aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html
blob: 05c0b5ddc421dc3ad69650f8184467fc92b95d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>

<form role="form" (ngSubmit)="updateMyProfile()" [formGroup]="form">

  <div class="form-group">
    <label i18n for="display-name">Display name</label>
    <input
      type="text" id="display-name"
      formControlName="display-name" [ngClass]="{ 'input-error': formErrors['display-name'] }"
    >
    <div *ngIf="formErrors['display-name']" class="form-error">
      {{ formErrors['display-name'] }}
    </div>
  </div>

  <div class="form-group">
    <label i18n for="description">Description</label>
    <textarea
      id="description" formControlName="description"
      [ngClass]="{ 'input-error': formErrors['description'] }"
    ></textarea>
    <div *ngIf="formErrors.description" class="form-error">
      {{ formErrors.description }}
    </div>
  </div>

  <input type="submit" i18n-value value="Update my profile" [disabled]="!form.valid">
</form>