]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.html
Move deleted comment on new follow tests
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-videos / video-change-ownership / video-change-ownership.component.html
CommitLineData
74d63469
GR
1<ng-template #modal let-close="close" let-dismiss="dismiss">
2 <div class="modal-header">
3 <h4 i18n class="modal-title">Change ownership</h4>
457bb213
C
4
5 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="dismiss()"></my-global-icon>
74d63469
GR
6 </div>
7
8 <div class="modal-body" [formGroup]="form">
9 <div class="form-group">
10 <label i18n for="next-ownership-username">Select the next owner</label>
11 <p-autoComplete formControlName="username" [suggestions]="usernamePropositions"
12 (completeMethod)="search($event)" id="next-ownership-username"></p-autoComplete>
13 <div *ngIf="formErrors.username" class="form-error">
14 {{ formErrors.username }}
15 </div>
16 </div>
17 </div>
18
19 <div class="modal-footer inputs">
20 <div class="form-group inputs">
21 <span i18n class="action-button action-button-cancel" (click)="dismiss()">
22 Cancel
23 </span>
24
25 <input
b014b6b9
C
26 type="submit" i18n-value value="Submit" class="action-button-submit"
27 [disabled]="!form.valid"
28 (click)="close()"
74d63469
GR
29 />
30 </div>
31 </div>
32</ng-template>