2018-07-13 20:50:21 +02:00
|
|
|
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" class="container" ngNativeValidate>
|
2018-06-09 06:38:55 +02:00
|
|
|
<div class="row justify-content-md-center mt-5">
|
|
|
|
<div class="col-5">
|
|
|
|
<p class="lead text-center mb-4">{{'passwordHint' | i18n}}</p>
|
2018-07-25 18:13:18 +02:00
|
|
|
<div class="card d-block">
|
2018-06-09 06:38:55 +02:00
|
|
|
<div class="card-body">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">{{'emailAddress' | i18n}}</label>
|
2019-02-21 22:50:37 +01:00
|
|
|
<input id="email" class="form-control" type="text" name="Email" [(ngModel)]="email" required
|
|
|
|
appAutofocus inputmode="email" appInputVerbatim="false">
|
2018-06-09 19:59:09 +02:00
|
|
|
<small class="form-text text-muted">{{'enterEmailToGetHint' | i18n}}</small>
|
2018-06-09 06:38:55 +02:00
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="d-flex">
|
2018-07-18 05:15:15 +02:00
|
|
|
<button type="submit" class="btn btn-primary btn-block btn-submit" [disabled]="form.loading">
|
2018-06-09 06:38:55 +02:00
|
|
|
<span [hidden]="form.loading">{{'submit' | i18n}}</span>
|
2018-07-18 05:15:15 +02:00
|
|
|
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}"></i>
|
2018-06-09 06:38:55 +02:00
|
|
|
</button>
|
2018-06-10 04:02:45 +02:00
|
|
|
<a routerLink="/" class="btn btn-outline-secondary btn-block ml-2 mt-0">
|
2018-06-09 06:38:55 +02:00
|
|
|
{{'cancel' | i18n}}
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-06-05 21:02:53 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-09 06:38:55 +02:00
|
|
|
</div>
|
2018-06-05 21:02:53 +02:00
|
|
|
</form>
|