1 <ng-template #modal let-close="close" let-dismiss="dismiss">
2 <div class="modal-header">
3 <h4 i18n class="modal-title">Accept ownership</h4>
4 <span class="close" aria-label="Close" role="button" (click)="dismiss()"></span>
7 <div class="modal-body" [formGroup]="form">
8 <div class="form-group">
9 <label i18n for="channel">Select the target channel</label>
10 <select formControlName="channel" id="channel" class="peertube-select-container">
12 <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }}
15 <div *ngIf="formErrors.channel" class="form-error">
16 {{ formErrors.channel }}
21 <div class="modal-footer inputs">
22 <div class="form-group inputs">
23 <span i18n class="action-button action-button-cancel" (click)="dismiss()">
28 type="submit" i18n-value value="Submit" class="action-button-submit"
29 [disabled]="!form.valid"