mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
303736c410
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
8 lines
457 B
Handlebars
8 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>
|