diff options
Diffstat (limited to 'client/src/app/login/login.component.html')
-rw-r--r-- | client/src/app/login/login.component.html | 88 |
1 files changed, 45 insertions, 43 deletions
diff --git a/client/src/app/login/login.component.html b/client/src/app/login/login.component.html index 3a2d4b876..3e53e5854 100644 --- a/client/src/app/login/login.component.html +++ b/client/src/app/login/login.component.html | |||
@@ -3,59 +3,61 @@ | |||
3 | Login | 3 | Login |
4 | </div> | 4 | </div> |
5 | 5 | ||
6 | <div class="alert alert-info" *ngIf="signupAllowed === false" role="alert"> | 6 | <ng-container *ngIf="!isAuthenticatedWithExternalAuth"> |
7 | <h6 class="alert-heading" i18n> | 7 | <div class="alert alert-info" *ngIf="signupAllowed === false" role="alert"> |
8 | If you are looking for an account… | 8 | <h6 class="alert-heading" i18n> |
9 | </h6> | 9 | If you are looking for an account… |
10 | </h6> | ||
10 | 11 | ||
11 | <div i18n> | 12 | <div i18n> |
12 | Currently this instance doesn't allow for user registration, but you can find an instance | 13 | Currently this instance doesn't allow for user registration, but you can find an instance |
13 | that gives you the possibility to sign up for an account and upload your videos there. | 14 | that gives you the possibility to sign up for an account and upload your videos there. |
14 | 15 | ||
15 | <br /> | 16 | <br /> |
16 | 17 | ||
17 | Find yours among multiple instances at <a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">https://joinpeertube.org/instances</a>. | 18 | Find yours among multiple instances at <a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">https://joinpeertube.org/instances</a>. |
18 | </div> | ||
19 | </div> | ||
20 | |||
21 | <div *ngIf="error" class="alert alert-danger">{{ error }} | ||
22 | <span *ngIf="error === 'User email is not verified.'"> <a i18n routerLink="/verify-account/ask-send-email">Request new verification email.</a></span> | ||
23 | </div> | ||
24 | |||
25 | <form role="form" (ngSubmit)="login()" [formGroup]="form"> | ||
26 | <div class="form-group"> | ||
27 | <div> | ||
28 | <label i18n for="username">User</label> | ||
29 | <input | ||
30 | type="text" id="username" i18n-placeholder placeholder="Username or email address" required tabindex="1" | ||
31 | formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" #emailInput | ||
32 | > | ||
33 | <a i18n *ngIf="signupAllowed === true" routerLink="/signup" class="create-an-account"> | ||
34 | or create an account | ||
35 | </a> | ||
36 | </div> | 19 | </div> |
20 | </div> | ||
37 | 21 | ||
38 | <div *ngIf="formErrors.username" class="form-error"> | 22 | <div *ngIf="error" class="alert alert-danger">{{ error }} |
39 | {{ formErrors.username }} | 23 | <span *ngIf="error === 'User email is not verified.'"> <a i18n routerLink="/verify-account/ask-send-email">Request new verification email.</a></span> |
40 | </div> | ||
41 | </div> | 24 | </div> |
42 | 25 | ||
43 | <div class="form-group"> | 26 | <form role="form" (ngSubmit)="login()" [formGroup]="form"> |
44 | <label i18n for="password">Password</label> | 27 | <div class="form-group"> |
45 | <div> | 28 | <div> |
46 | <input | 29 | <label i18n for="username">User</label> |
47 | type="password" name="password" id="password" i18n-placeholder placeholder="Password" required tabindex="2" autocomplete="current-password" | 30 | <input |
48 | formControlName="password" class="form-control" [ngClass]="{ 'input-error': formErrors['password'] }" | 31 | type="text" id="username" i18n-placeholder placeholder="Username or email address" required tabindex="1" |
49 | > | 32 | formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" #emailInput |
50 | <a i18n-title class="forgot-password-button" (click)="openForgotPasswordModal()" title="Click here to reset your password">I forgot my password</a> | 33 | > |
34 | <a i18n *ngIf="signupAllowed === true" routerLink="/signup" class="create-an-account"> | ||
35 | or create an account | ||
36 | </a> | ||
37 | </div> | ||
38 | |||
39 | <div *ngIf="formErrors.username" class="form-error"> | ||
40 | {{ formErrors.username }} | ||
41 | </div> | ||
51 | </div> | 42 | </div> |
52 | <div *ngIf="formErrors.password" class="form-error"> | 43 | |
53 | {{ formErrors.password }} | 44 | <div class="form-group"> |
45 | <label i18n for="password">Password</label> | ||
46 | <div> | ||
47 | <input | ||
48 | type="password" name="password" id="password" i18n-placeholder placeholder="Password" required tabindex="2" autocomplete="current-password" | ||
49 | formControlName="password" class="form-control" [ngClass]="{ 'input-error': formErrors['password'] }" | ||
50 | > | ||
51 | <a i18n-title class="forgot-password-button" (click)="openForgotPasswordModal()" title="Click here to reset your password">I forgot my password</a> | ||
52 | </div> | ||
53 | <div *ngIf="formErrors.password" class="form-error"> | ||
54 | {{ formErrors.password }} | ||
55 | </div> | ||
54 | </div> | 56 | </div> |
55 | </div> | ||
56 | 57 | ||
57 | <input type="submit" i18n-value value="Login" [disabled]="!form.valid"> | 58 | <input type="submit" i18n-value value="Login" [disabled]="!form.valid"> |
58 | </form> | 59 | </form> |
60 | </ng-container> | ||
59 | </div> | 61 | </div> |
60 | 62 | ||
61 | <ng-template #forgotPasswordModal> | 63 | <ng-template #forgotPasswordModal> |