Advertisement
Guest User

Untitled

a guest
Dec 20th, 2013
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. (function() {
  2.  
  3. var saml = document.createElement('script');
  4. saml.type = 'text/javascript';
  5. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(saml);
  6. })();
  7.  
  8. $(document).ready(function(){
  9.  
  10. //$('#password').parent().hide();
  11. $('#password').parent().removeClass("infield groupbottom");
  12. $('#password').parent().addClass("infield groupmiddle");
  13. $('#password').parent().after(
  14. '<p class="infield groupbottom">'+
  15. '<input id="otpPassword" type="password" placeholder="" data-typetoggle="#show" value="" name="otpPassword"'+ 'original-title="">'+
  16. '<input type="text" name="password-clone" tabindex="0" autocomplete="off" style="display: none;" original-title="">'+
  17. '<label class="infield" for="otpPassword">One Time Password</label>'+
  18. '<img id="password-icon" class="svg" alt="" src="/core/img/actions/password.svg">'+
  19.  
  20. '</p>');
  21. $('#remember_login').hide();
  22. $('#remember_login+label').hide();
  23. //$('#submit').hide();
  24.  
  25.  
  26.  
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement