1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-04 21:15:24 +02:00
documize/gui/app/templates/components/user/forgot-password.hbs

17 lines
653 B
Handlebars
Raw Normal View History

2018-12-08 20:54:19 +00:00
<form {{action "forgot" on="submit"}}>
{{#if sayThanks}}
<div class="reset-thanks margin-bottom-30">Thanks. Check your email for instructions.</div>
{{else}}
2017-11-27 19:07:36 +00:00
<div class="form-group">
<label for="email">Email</label>
2018-12-08 20:54:19 +00:00
{{focus-input type="email" value=email id="email" class=(if hasEmptyEmailError "form-control is-invalid" "form-control")}}
</div>
2017-11-27 19:07:36 +00:00
<div class="mt-4">
2018-12-12 13:35:16 +00:00
<button type="submit" class="btn btn-success bold-700 text-uppercase">Reset</button>
</div>
{{/if}}
2017-11-27 19:07:36 +00:00
<div class="mt-5">
2018-12-08 20:54:19 +00:00
{{#link-to "auth.login"}}Click here to sign in{{/link-to}}
2017-11-27 19:07:36 +00:00
</div>
</form>