Merge branch 'master' into develop
[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         <span i18n class="action-button action-button-cancel" (click)="hide()">Cancel</span>
24
25         <input
26           type="submit" i18n-value value="Update this comment" class="action-button-submit"
27           [disabled]="!form.valid"
28         >
29       </div>
30     </form>
31   </div>
32
33 </ng-template>