Reorganize client shared modules
[oweals/peertube.git] / client / src / app / shared / shared-moderation / video-block.component.html
1 <ng-template #modal>
2   <div class="modal-header">
3     <h4 i18n class="modal-title">Block video "{{ video.name }}"</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     <form novalidate [formGroup]="form" (ngSubmit)="block()">
10       <div class="form-group">
11         <textarea
12           i18n-placeholder placeholder="Please describe the reason..." formControlName="reason"
13           [ngClass]="{ 'input-error': formErrors['reason'] }" class="form-control"
14         ></textarea>
15         <div *ngIf="formErrors.reason" class="form-error">
16           {{ formErrors.reason }}
17         </div>
18       </div>
19
20       <div class="form-group" *ngIf="video.isLocal">
21         <my-peertube-checkbox
22           inputName="unfederate" formControlName="unfederate"
23           i18n-labelText labelText="Unfederate the video"
24         >
25           <ng-container ngProjectAs="description">
26             <span i18n>This will ask remote instances to delete it</span>
27           </ng-container>
28         </my-peertube-checkbox>
29       </div>
30
31       <div class="form-group inputs">
32         <input
33           type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
34           (click)="hide()" (key.enter)="hide()"
35         >
36
37         <input
38           type="submit" i18n-value value="Submit" class="action-button-submit"
39           [disabled]="!form.valid"
40         >
41       </div>
42     </form>
43
44   </div>
45 </ng-template>