我使用 Owncloud 的一次性密码应用程序,女巫在登录表单上添加了第二个密码字段,女巫针对多 otp 服务进行身份验证。
问题是来自 otp 输入字段的文本字段的标签没有被隐藏。
以下 .js 是相关的:
(function() {
var saml = document.createElement('script'); saml.type = 'text/javascript';
(document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(saml); })();
$(document).ready(function(){
//$('#password').parent().hide();
$('#password').parent().removeClass("infield groupbottom");
$('#password').parent().addClass("infield groupmiddle");
$('#password').parent().after(
'<p class="infield groupbottom">'+
'<input id="otpPassword" type="password" placeholder="" data-
typetoggle="#show" value="" name="otpPassword"'+
'original-title="">'+ '<input type="text" name="password-clone"
tabindex="0" autocomplete="off" style="display: none;"
original-title="">'+ '<label class="infield" for="otpPassword">One
Time Password</label>'+ '<img id="password-icon" class="svg" alt=""
src="/core/img/actions/password.svg">'+
'</p>');
$('#remember_login').hide();
$('#remember_login+label').hide();
//$('#submit').hide();
});
或在这里查看:http: //pastebin.com/8YX2FEGt
也许有人解决了这个问题?