diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-12-04 15:58:55 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-12-04 16:01:53 +0100 |
commit | f8b530e0a523a0d9ff469ef716838374c395a360 (patch) | |
tree | a55d49365e539582dd5000a2c73b9351df93a52d /client/src/app/+login | |
parent | aa5ee5017a83b280352f8dbcfed2d4741709a4fd (diff) | |
download | PeerTube-f8b530e0a523a0d9ff469ef716838374c395a360.tar.gz PeerTube-f8b530e0a523a0d9ff469ef716838374c395a360.tar.zst PeerTube-f8b530e0a523a0d9ff469ef716838374c395a360.zip |
unify inputs requiring buttons like password inputs
Diffstat (limited to 'client/src/app/+login')
-rw-r--r-- | client/src/app/+login/login.component.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+login/login.component.html b/client/src/app/+login/login.component.html index 7ceae9311..390d77dd7 100644 --- a/client/src/app/+login/login.component.html +++ b/client/src/app/+login/login.component.html | |||
@@ -50,10 +50,10 @@ | |||
50 | <div class="form-group"> | 50 | <div class="form-group"> |
51 | <label i18n for="password">Password</label> | 51 | <label i18n for="password">Password</label> |
52 | <div> | 52 | <div> |
53 | <input | 53 | <my-input-toggle-hidden formControlName="password" id="password" |
54 | type="password" name="password" id="password" i18n-placeholder placeholder="Password" required tabindex="2" autocomplete="current-password" | 54 | i18n-placeholder placeholder="Password" |
55 | formControlName="password" class="form-control" [ngClass]="{ 'input-error': formErrors['password'] }" | 55 | [ngClass]="{ 'input-error': formErrors['password'] }" |
56 | > | 56 | autocomplete="current-password"></my-input-toggle-hidden> |
57 | <a i18n-title class="forgot-password-button" (click)="openForgotPasswordModal()" title="Click here to reset your password">I forgot my password</a> | 57 | <a i18n-title class="forgot-password-button" (click)="openForgotPasswordModal()" title="Click here to reset your password">I forgot my password</a> |
58 | </div> | 58 | </div> |
59 | <div *ngIf="formErrors.password" class="form-error"> | 59 | <div *ngIf="formErrors.password" class="form-error"> |