mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
16 lines
619 B
Handlebars
16 lines
619 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="form-group">
|
|
<label for="email">Email</label>
|
|
{{focus-input type="email" value=email id="email" class="form-control {{if hasEmptyEmailError 'is-invalid')}}"}}
|
|
</div>
|
|
<div class="mt-4">
|
|
<button type="submit" class="btn btn-primary">Reset</button>
|
|
</div>
|
|
{{/if}}
|
|
<div class="mt-5">
|
|
{{#link-to 'auth.login'}}Click here to sign in{{/link-to}}
|
|
</div>
|
|
</form>
|