1

我使用 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

也许有人解决了这个问题?

4

1 回答 1

1

我确实想出了解决课程问题

您可以通过以下方式解决此问题:

>> core/css/styles.css

Line: 550 // width wert change
#body-login input[type="text"],
#body-login input[type="password"] {
    width: 11.7em;
}


Line: 372 // add padding
#body-login .groupbottom input {
    margin-top: 0;
    border-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding-left:35px;
    box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important;
}
于 2014-02-14T15:49:58.240 回答