mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
39ae3869a1
- Added CSS to implement the fade in effect. - Added 'autofocus' to the attribute bindings of the TextField so they accept it.
9 lines
487 B
Handlebars
9 lines
487 B
Handlebars
<section class="forgotten-box js-forgotten-box fade-in">
|
|
<form id="forgotten" class="forgotten-form" method="post" novalidate="novalidate" {{action "submit" on="submit"}}>
|
|
<div class="email-wrap">
|
|
{{input value=email class="email" type="email" placeholder="Email Address" name="email" autofocus="autofocus" autocapitalize="off" autocorrect="off"}}
|
|
</div>
|
|
<button class="button-save" type="submit">Send new password</button>
|
|
</form>
|
|
</section>
|