aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/modals/video-report.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video/modals/video-report.component.html')
-rw-r--r--client/src/app/shared/video/modals/video-report.component.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/client/src/app/shared/video/modals/video-report.component.html b/client/src/app/shared/video/modals/video-report.component.html
index b9434da26..e336b6660 100644
--- a/client/src/app/shared/video/modals/video-report.component.html
+++ b/client/src/app/shared/video/modals/video-report.component.html
@@ -7,23 +7,25 @@
7 <div class="modal-body"> 7 <div class="modal-body">
8 8
9 <div i18n class="information"> 9 <div i18n class="information">
10 Your report will be sent to moderators of {{ currentHost }}. 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 <ng-container *ngIf="isRemoteVideo()"> It will be forwarded to origin instance {{ originHost }} too.</ng-container>
12 </div> 11 </div>
13 12
14 <form novalidate [formGroup]="form" (ngSubmit)="report()"> 13 <form novalidate [formGroup]="form" (ngSubmit)="report()">
15 <div class="form-group"> 14 <div class="form-group">
16 <textarea i18n-placeholder placeholder="Reason..." formControlName="reason" [ngClass]="{ 'input-error': formErrors['reason'] }"> 15 <textarea
17 </textarea> 16 i18n-placeholder placeholder="Reason..." formControlName="reason"
17 [ngClass]="{ 'input-error': formErrors['reason'] }" class="form-control"
18 ></textarea>
18 <div *ngIf="formErrors.reason" class="form-error"> 19 <div *ngIf="formErrors.reason" class="form-error">
19 {{ formErrors.reason }} 20 {{ formErrors.reason }}
20 </div> 21 </div>
21 </div> 22 </div>
22 23
23 <div class="form-group inputs"> 24 <div class="form-group inputs">
24 <span i18n class="action-button action-button-cancel" (click)="hide()"> 25 <input
25 Cancel 26 type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
26 </span> 27 (click)="hide()" (key.enter)="hide()"
28 >
27 29
28 <input 30 <input
29 type="submit" i18n-value value="Submit" class="action-button-submit" 31 type="submit" i18n-value value="Submit" class="action-button-submit"