mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
15 lines
614 B
Handlebars
15 lines
614 B
Handlebars
<form {{action 'forgot' on="submit"}}>
|
|
{{#if sayThanks}}
|
|
<div class="reset-thanks margin-bottom-30">Thanks. Check your email for instructions.</div>
|
|
{{else}}
|
|
<div class="input-control">
|
|
<label>Email</label>
|
|
{{focus-input type="email" value=email id="email" class=(if hasEmptyEmailError 'error')}}
|
|
</div>
|
|
<div class="clearfix" />
|
|
<div class="margin-top-10 margin-bottom-20">
|
|
<button type="submit" class="regular-button button-blue">Reset</button>
|
|
</div>
|
|
{{/if}}
|
|
{{#link-to 'auth.login'}}Sign In{{/link-to}}
|
|
</form>
|