Skip to content

Instantly share code, notes, and snippets.

@michaelmusgrove
Created October 6, 2014 23:56
Show Gist options
  • Save michaelmusgrove/5e525379dd19c0a25498 to your computer and use it in GitHub Desktop.
Save michaelmusgrove/5e525379dd19c0a25498 to your computer and use it in GitHub Desktop.
Customize the login panel - remember to change the URLs as needed.
/**
* @author Michael Musgrove
* @example http://wpplus.me/
* @copyright 2014 WP Plus me
*/
<div class="login-wrap">
<form name="loginform" id="loginform" action="http://www.example.dev/wp-login.php" method="post">
<p class="login-username">
<label for="user_login">Username</label>
<input type="text" name="log" id="user_login" class="input" value="" size="18" />
</p>
<p class="login-password">
<label for="user_pass">Password</label>
<input type="password" name="pwd" id="user_pass" class="input" value="" size="18" />
</p>
<p class="login-remember"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label></p>
<p class="login-submit">
<input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In" />
<input type="hidden" name="redirect_to" value="http://wplus.me/registration/" />
</p>
</form>
</div><!-- .login-wrap -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment