mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
e9c27bb633
no issue - this ports over screens from old admin to allow people to begin working on aspects of the screen - All logged out screens have been imported: Signup, Signin, Forgotten password, reset password - Those screens are now ready for behavior to be ported over - This also updates templates to be more in line with how they were in the old admin - Littered through the code are @TODO comments of functionality that is missing and will need to be resolved before this is production ready - Also scaffolds out the settings screen and every tab
15 lines
684 B
Handlebars
15 lines
684 B
Handlebars
<section class="signup-box js-signup-box">
|
|
<form id="signup" class="signup-form" method="post" novalidate="novalidate">
|
|
<div class="name-wrap">
|
|
<input class="name" type="text" placeholder="Full Name" name="name" autocorrect="off" />
|
|
</div>
|
|
<div class="email-wrap">
|
|
<input class="email" type="email" placeholder="Email Address" name="email" autocapitalize="off" autocorrect="off" />
|
|
</div>
|
|
<div class="password-wrap">
|
|
<input class="password" type="password" placeholder="Password" name="password" />
|
|
</div>
|
|
<button class="button-save" type="submit">Sign Up</button>
|
|
</form>
|
|
</section>
|