mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
ac113b582f
- Added CSS to implement the fade in effect. - Added 'autofocus' to the attribute bindings of the TextField so they accept it.
12 lines
687 B
Handlebars
12 lines
687 B
Handlebars
<section class="reset-box js-reset-box fade-in">
|
|
<form id="reset" class="reset-form" method="post" novalidate="novalidate" {{action "submit" on="submit"}}>
|
|
<div class="password-wrap">
|
|
{{input value=passwords.newPassword class="password" type="password" placeholder="Password" name="newpassword" autofocus="autofocus" }}
|
|
</div>
|
|
<div class="password-wrap">
|
|
{{input value=passwords.ne2Password class="password" type="password" placeholder="Confirm Password" name="ne2password" }}
|
|
</div>
|
|
<button class="button-save" type="submit" {{bind-attr disabled='submitButtonDisabled'}}>Reset Password</button>
|
|
</form>
|
|
</section>
|