2016-07-26 14:49:47 +02: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-06-29 16:06:50 +01:00
|
|
|
{{focus-input type="email" value=email id="email" class=(if hasEmptyEmailError 'form-control is-invalid' 'form-control')}}
|
2016-07-26 14:49:47 +02:00
|
|
|
</div>
|
2017-11-27 19:07:36 +00:00
|
|
|
<div class="mt-4">
|
2018-06-29 16:06:50 +01:00
|
|
|
<button type="submit" class="btn btn-success font-weight-bold text-uppercase">Reset</button>
|
2016-07-26 14:49:47 +02:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2017-11-27 19:07:36 +00:00
|
|
|
<div class="mt-5">
|
|
|
|
{{#link-to 'auth.login'}}Click here to sign in{{/link-to}}
|
|
|
|
</div>
|
2016-07-26 14:49:47 +02:00
|
|
|
</form>
|