aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html')
-rw-r--r--client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html b/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
index 222da9542..def1cbab6 100644
--- a/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
+++ b/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
@@ -7,27 +7,27 @@
7 7
8 <div class="modal-body" [formGroup]="form"> 8 <div class="modal-body" [formGroup]="form">
9 <div class="form-group"> 9 <div class="form-group">
10 <label i18n for="channel">Select the target channel</label> 10 <label i18n for="channel">Select a channel to receive the video</label>
11 <select formControlName="channel" id="channel" class="peertube-select-container"> 11 <div class="peertube-select-container">
12 <option></option> 12 <select formControlName="channel" id="channel" class="form-control">
13 <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }} 13 <option i18n value="undefined" disabled>Channel that will receive the video</option>
14 </option> 14 <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }}
15 </select> 15 </option>
16 <div *ngIf="formErrors.channel" class="form-error"> 16 </select>
17 {{ formErrors.channel }}
18 </div> 17 </div>
18 <div *ngIf="formErrors.channel" class="form-error">{{ formErrors.channel }}</div>
19 </div> 19 </div>
20 </div> 20 </div>
21 21
22 <div class="modal-footer inputs"> 22 <div class="modal-footer inputs">
23 <div class="form-group inputs"> 23 <div class="inputs">
24 <input 24 <input
25 type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel" 25 type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel"
26 (click)="dismiss()" (key.enter)="dismiss()" 26 (click)="dismiss()" (key.enter)="dismiss()"
27 > 27 >
28 28
29 <input 29 <input
30 type="submit" i18n-value value="Submit" class="action-button-submit" 30 type="submit" i18n-value value="Accept" class="action-button-submit"
31 [disabled]="!form.valid" 31 [disabled]="!form.valid"
32 (click)="close()" 32 (click)="close()"
33 > 33 >