aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-instance/contact-admin-modal.component.html
blob: 2b3fb32f3bb73afcb5fc181131d83221ad822dd9 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<ng-template #modal>
  <div class="modal-header">
    <h4 i18n class="modal-title">Contact {{ instanceName }} administrator</h4>
    <span class="close" aria-label="Close" role="button" (click)="hide()"></span>
  </div>

  <div class="modal-body">

    <form novalidate [formGroup]="form" (ngSubmit)="sendForm()">
      <div class="form-group">
        <label i18n for="fromName">Your name</label>
        <input
          type="text" id="fromName"
          formControlName="fromName" [ngClass]="{ 'input-error': formErrors.fromName }"
        >
        <div *ngIf="formErrors.fromName" class="form-error">{{ formErrors.fromName }}</div>
      </div>

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

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

      <div *ngIf="error" class="alert alert-danger">{{ error }}</div>

      <div class="form-group inputs">
        <span i18n class="action-button action-button-cancel" (click)="hide()">
          Cancel
        </span>

        <input
          type="submit" i18n-value value="Submit" class="action-button-submit"
          [disabled]="!form.valid"
        >
      </div>
    </form>

  </div>
</ng-template>