Advertisement
Anik71

Wordpress Custom Login Code

Jul 11th, 2017
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <?php
  2. if ( is_user_logged_in() ) {
  3. $current_user = wp_get_current_user();
  4. echo '';
  5. }
  6. else {
  7. echo '<div class="box"><div class="title">Quick LogIn</div><div class="qlogin"><form name="loginform" id="loginform" action="/wp-login.php" method="post">
  8. <table width="auto"><tr>
  9. <td>
  10. <input type="text" name="log" id="user_login" class="input" value="Username" size="6">
  11. </td><td>
  12. <input type="password" name="pwd" id="user_pass" class="input" value="Password" size="6">
  13. </td><td>
  14. <input name="rememberme" type="hidden" id="rememberme" value="forever">
  15. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In">
  16. </td>
  17. </tr></table>
  18. <input type="hidden" name="redirect_to" value="/"></form></div><div class="ft-info"><center><a href="wp-register.php"><div class="rbtn">Create an Account</div></a></center></div></div>
  19. ';
  20. }
  21. ?>
  22.  
  23. <style>
  24. input[type=password]{ background: #fff;
  25. border: 1px solid #dbdbdb;
  26. border-radius: 4px;
  27. color: #2f3432;
  28. padding:6px;
  29. display: block; }
  30.  
  31. .qlogin{padding: 6px; background: #FFF; border: 1px solid rgba(248, 248, 248, 1);} .box{border: 1px solid #87CEEB; margin: 7px 4px;} div.title{color: #FFF; padding: 5px 11px; background: none repeat scroll 0% 0% #87CEEB; font-weight: bold; color:black; }
  32.  
  33. .ft-info{background: none repeat scroll 0% 0% rgba(227, 227, 227, 1); padding: 3px 9px; color: #808080; font-size: 12px;}
  34.  
  35. .topnav{overflow: hidden; background: none repeat scroll 0% 0% rgba(87, 87, 87, 1); text-align: center;}
  36.  
  37. .topnav ul{list-style:none;margin:0px;padding:0px;}
  38.  
  39. .topnav ul li{display: inline-block; padding: 4px 8px;} li.active{background: rgba(75, 75, 75, 1);} .topnav ul li a{color:#fff}
  40.  
  41. .rbtn{background: none repeat scroll 0% 0% #52B452; margin: 3px; padding: 3px 6px; color: #FFF; border: 1px outset #3AA75A;}</style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement