Merge branch 'release/2.1.0' into develop
[oweals/peertube.git] / client / src / app / shared / video / modals / video-blacklist.component.html
1 <ng-template #modal>
2   <div class="modal-header">
3     <h4 i18n class="modal-title">Blacklist 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     <form novalidate [formGroup]="form" (ngSubmit)="blacklist()">
10       <div class="form-group">
11         <textarea i18n-placeholder placeholder="Reason..." formControlName="reason" [ngClass]="{ 'input-error': formErrors['reason'] }">
12         </textarea>
13         <div *ngIf="formErrors.reason" class="form-error">
14           {{ formErrors.reason }}
15         </div>
16       </div>
17
18       <div class="form-group" *ngIf="video.isLocal">
19         <my-peertube-checkbox
20           inputName="unfederate" formControlName="unfederate"
21           i18n-labelText labelText="Unfederate the video (ask for its deletion from the remote instances)"
22         ></my-peertube-checkbox>
23       </div>
24
25       <div class="form-group inputs">
26         <span i18n class="action-button action-button-cancel" (click)="hide()">
27           Cancel
28         </span>
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>