8fbd33871a4636693edc4fa352b483ad4faae76a
[oweals/peertube.git] / client / src / app / +admin / moderation / video-abuse-list / moderation-comment-modal.component.html
1 <ng-template #modal>
2   <div class="modal-header">
3     <h4 i18n class="modal-title">Moderation comment</h4>
4
5     <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
6   </div>
7
8   <div class="modal-body">
9     <form novalidate [formGroup]="form" (ngSubmit)="banUser()">
10       <div class="form-group">
11         <textarea formControlName="moderationComment" [ngClass]="{ 'input-error': formErrors['moderationComment'] }">
12         </textarea>
13         <div *ngIf="formErrors.moderationComment" class="form-error">
14           {{ formErrors.moderationComment }}
15         </div>
16       </div>
17
18       <div class="form-group" i18n>
19         This comment can only be seen by you or the other moderators.
20       </div>
21
22       <div class="form-group inputs">
23         <input
24           type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
25           (click)="hide()" (key.enter)="hide()"
26         >
27
28         <input
29           type="submit" i18n-value value="Update this comment" class="action-button-submit"
30           [disabled]="!form.valid"
31         >
32       </div>
33     </form>
34   </div>
35
36 </ng-template>