e336b666038ea222bc5be8eb963459969ceb8d2b
[oweals/peertube.git] / client / src / app / shared / video / modals / video-report.component.html
1 <ng-template #modal>
2   <div class="modal-header">
3     <h4 i18n class="modal-title">Report video</h4>
4     <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
5   </div>
6
7   <div class="modal-body">
8
9     <div i18n class="information">
10       Your report will be sent to moderators of {{ currentHost }}<ng-container *ngIf="isRemoteVideo()"> and will be forwarded to the video origin ({{ originHost }}) too</ng-container>.
11     </div>
12
13     <form novalidate [formGroup]="form" (ngSubmit)="report()">
14       <div class="form-group">
15         <textarea 
16           i18n-placeholder placeholder="Reason..." formControlName="reason"
17           [ngClass]="{ 'input-error': formErrors['reason'] }" class="form-control"
18         ></textarea>
19         <div *ngIf="formErrors.reason" class="form-error">
20           {{ formErrors.reason }}
21         </div>
22       </div>
23
24       <div class="form-group inputs">
25         <input
26           type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
27           (click)="hide()" (key.enter)="hide()"
28         >
29
30         <input
31           type="submit" i18n-value value="Submit" class="action-button-submit"
32           [disabled]="!form.valid"
33         >
34       </div>
35     </form>
36
37   </div>
38 </ng-template>