]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html
Hide all email block if we can't change it
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-change-email / my-account-change-email.component.html
CommitLineData
0ba5f5ba
C
1<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
2<div *ngIf="success" class="alert alert-success">{{ success }}</div>
3
0ba5f5ba 4<div i18n class="pending-email" *ngIf="user.pendingEmail">
5b0ec7cd 5 <strong>{{ user.pendingEmail }}</strong> is awaiting email verification
0ba5f5ba
C
6</div>
7
1f545e80 8<form role="form" class="change-email" (ngSubmit)="changeEmail()" [formGroup]="form">
0ba5f5ba
C
9
10 <div class="form-group">
5b0ec7cd
C
11 <label i18n for="new-email">Change your email</label>
12
13 <div i18n class="form-group-description">
14 Your current email is <strong>{{ user.email }}</strong>.
15 It is never shown to the public.
16 </div>
17
0ba5f5ba 18 <input
f8b530e0 19 type="email" id="new-email" i18n-placeholder placeholder="New email" class="form-control"
0ba5f5ba
C
20 formControlName="new-email" [ngClass]="{ 'input-error': formErrors['new-email'] }"
21 >
22 <div *ngIf="formErrors['new-email']" class="form-error">
23 {{ formErrors['new-email'] }}
24 </div>
25 </div>
26
27 <div class="form-group">
75084782
C
28 <my-input-text
29 formControlName="password" id="password" i18n-placeholder placeholder="Current password"
30 [formError]="formErrors['password']" autocomplete="current-password"
31 ></my-input-text>
0ba5f5ba
C
32 </div>
33
34 <input type="submit" i18n-value value="Change email" [disabled]="!form.valid">
35</form>