diff options
Diffstat (limited to 'client/src/app/login/login.component.html')
-rw-r--r-- | client/src/app/login/login.component.html | 50 |
1 files changed, 22 insertions, 28 deletions
diff --git a/client/src/app/login/login.component.html b/client/src/app/login/login.component.html index 1846fd19e..fac63d44d 100644 --- a/client/src/app/login/login.component.html +++ b/client/src/app/login/login.component.html | |||
@@ -50,35 +50,29 @@ | |||
50 | </form> | 50 | </form> |
51 | </div> | 51 | </div> |
52 | 52 | ||
53 | <div bsModal #forgotPasswordModal="bs-modal" (onShown)="onForgotPasswordModalShown()" class="modal" tabindex="-1"> | 53 | <!--<ng-template #forgotPasswordModal (onShown)="onForgotPasswordModalShown()">--> |
54 | <div class="modal-dialog"> | 54 | <ng-template #forgotPasswordModal> |
55 | <div class="modal-content"> | 55 | <div class="modal-header"> |
56 | 56 | <h4 i18n class="modal-title">Forgot your password</h4> | |
57 | <div class="modal-header"> | 57 | <span class="close" aria-hidden="true" (click)="hideForgotPasswordModal()"></span> |
58 | <span class="close" aria-hidden="true" (click)="hideForgotPasswordModal()"></span> | 58 | </div> |
59 | <h4 i18n class="modal-title">Forgot your password</h4> | ||
60 | </div> | ||
61 | 59 | ||
62 | <div class="modal-body"> | 60 | <div class="modal-body"> |
63 | <div class="form-group"> | 61 | <div class="form-group"> |
64 | <label i18n for="forgot-password-email">Email</label> | 62 | <label i18n for="forgot-password-email">Email</label> |
65 | <input | 63 | <input |
66 | type="email" id="forgot-password-email" i18n-placeholder placeholder="Email address" required | 64 | type="email" id="forgot-password-email" i18n-placeholder placeholder="Email address" required |
67 | [(ngModel)]="forgotPasswordEmail" #forgotPasswordEmailInput | 65 | [(ngModel)]="forgotPasswordEmail" #forgotPasswordEmailInput |
68 | > | 66 | > |
69 | </div> | 67 | </div> |
68 | </div> | ||
70 | 69 | ||
71 | <div class="form-group inputs"> | 70 | <div class="modal-footer inputs"> |
72 | <span i18n class="action-button action-button-cancel" (click)="hideForgotPasswordModal()"> | 71 | <span i18n class="action-button action-button-cancel" (click)="hideForgotPasswordModal()">Cancel</span> |
73 | Cancel | ||
74 | </span> | ||
75 | 72 | ||
76 | <input | 73 | <input |
77 | type="submit" i18n-value value="Send me an email to reset my password" class="action-button-submit" | 74 | type="submit" i18n-value value="Send me an email to reset my password" class="action-button-submit" |
78 | (click)="askResetPassword()" [disabled]="!forgotPasswordEmailInput.validity.valid" | 75 | (click)="askResetPassword()" [disabled]="!forgotPasswordEmailInput.validity.valid" |
79 | > | 76 | > |
80 | </div> | ||
81 | </div> | ||
82 | </div> | ||
83 | </div> | 77 | </div> |
84 | </div> | 78 | </ng-template> |