firoze

wordpress login form

Jul 17th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. // wordpress login form
  2.  
  3. <form name="loginform" id="loginform" action="<?php bloginfo('url');?>/wp-login.php" method="post">
  4. <div class="form-group">
  5. <label for="user_login">Username</label>
  6. <input style="padding:5px;" type="text" name="log" class="form-control" id="exampleInputEmail1" placeholder="Username">
  7. </div>
  8. <div class="form-group">
  9. <label for="exampleInputPassword1">Password</label>
  10. <input style="padding:5px;" name="pwd" type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  11. </div>
  12. <p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label></p>
  13. <button type="submit" name="wp-submit" class="btn btn-default">Log In</button>
  14. <input type="hidden" name="redirect_to" value="<?php bloginfo('url');?>" />
  15. <input type="hidden" name="testcookie" value="1" />
  16. </form>
Advertisement
Add Comment
Please, Sign In to add comment