mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
ab97c8c861
Closes #2976, Closes #3017 - Move logic to signup controller - Add ValidationEngine mixin to signup controller - Add signup validator with code from clientold login view - Add signin validator and integrate into signin controller - Add validation to forgotten controller - Switch to button action to support hitting enter in text field to submit - Clear all notifications in notifications.closeAll - Modify ValidationEngine.validate to not format errors based on option - Update casper test for signin to wait for notification before trying to do another signin
9 lines
509 B
Handlebars
9 lines
509 B
Handlebars
<section class="forgotten-box js-forgotten-box fade-in">
|
|
<form id="forgotten" class="forgotten-form" method="post" novalidate="novalidate">
|
|
<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" {{action "submit"}} {{bind-attr disabled=submitting}}>Send new password</button>
|
|
</form>
|
|
</section>
|