mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 11:30:55 +03:00
6c51b5c2f2
closes #2411 - Added ForgottenController which handles the form submit event - Modified the forgotten template - Added Paths utility tool to get the root/subpath - Added ajax fixture
9 lines
457 B
Handlebars
9 lines
457 B
Handlebars
<section class="forgotten-box js-forgotten-box">
|
|
<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" autocapitalize="off" autocorrect="off"}}
|
|
</div>
|
|
<button class="button-save" type="submit">Send new password</button>
|
|
</form>
|
|
</section>
|