forked from TryGhost/Ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor + Restyle login/register screens. See TryGhost#134
- Loading branch information
1 parent
7e1bd29
commit 1267f91
Showing
3 changed files
with
52 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{{!< default}} | ||
<img class="login-logo" src="/core/admin/assets/img/logo.png" alt="" /> | ||
<form id="register" method="post"> | ||
<div class="email-wrap"> | ||
<input class="email_address" type="text" placeholder="Email Address" name="email_address"> | ||
</div> | ||
<div class="password-wrap"> | ||
<input class="password" type="password" placeholder="Password" name="password"> | ||
</div> | ||
<button class="button-save" type="submit">Register</button> | ||
<a href="/ghost/login/">Log in</a> | ||
</form> | ||
<section class="login-box"> | ||
<form id="register" method="post"> | ||
<div class="email-wrap"> | ||
<input class="email_address" type="text" placeholder="Email Address" name="email_address"> | ||
</div> | ||
<div class="password-wrap"> | ||
<input class="password" type="password" placeholder="Password" name="password"> | ||
</div> | ||
<button class="button-save" type="submit">Register</button> | ||
<section class="meta"> | ||
<a href="/ghost/login/">Log in</a> | ||
</section> | ||
</form> | ||
</section> |