]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.component.html
Fix overflow in select inputs
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.html
1 <div class="margin-content">
2 <div class="title-page title-page-single">
3 Upload your video
4 </div>
5
6 <div *ngIf="error" class="alert alert-danger">{{ error }}</div>
7
8 <div *ngIf="!isUploadingVideo" class="upload-video-container">
9 <div class="upload-video">
10 <div class="icon icon-upload"></div>
11
12 <div class="button-file">
13 <span>Select the file to upload</span>
14 <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" />
15 </div>
16
17 <div class="form-group form-group-channel">
18 <label for="first-step-channel">Channel</label>
19 <div class="peertube-select-container">
20 <select id="first-step-channel" [(ngModel)]="firstStepChannelId">
21 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
22 </select>
23 </div>
24 </div>
25
26 <div class="form-group">
27 <label for="first-step-privacy">Privacy</label>
28 <div class="peertube-select-container">
29 <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId">
30 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
31 </select>
32 </div>
33 </div>
34 </div>
35 </div>
36
37 <p-progressBar
38 *ngIf="isUploadingVideo" [value]="videoUploadPercents"
39 [ngClass]="{ processing: videoUploadPercents === 100 && videoUploaded === false }"
40 ></p-progressBar>
41
42 <!-- Hidden because we need to load the component -->
43 <form [hidden]="!isUploadingVideo" novalidate [formGroup]="form">
44 <my-video-edit
45 [form]="form" [formErrors]="formErrors"
46 [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
47 ></my-video-edit>
48
49
50 <div class="submit-container">
51 <div *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div>
52
53 <div class="submit-button" (click)="updateSecondStep()" [ngClass]="{ disabled: !form.valid || videoUploaded !== true }">
54 <span class="icon icon-validate"></span>
55 <input type="button" value="Publish" />
56 </div>
57 </div>
58 </form>
59 </div>