]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-edit/video-add.component.html
Client: update to angular 4
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-edit / video-add.component.html
CommitLineData
dc8bc31b
C
1<h3>Upload a video</h3>
2
1cdb5c0f
C
3<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
4
46485303 5<form novalidate [formGroup]="form">
dc8bc31b 6 <div class="form-group">
e822fdae 7 <label for="name">Name</label>
dc8bc31b 8 <input
4b2f33f3
C
9 type="text" class="form-control" id="name"
10 formControlName="name"
dc8bc31b 11 >
4b2f33f3
C
12 <div *ngIf="formErrors.name" class="alert alert-danger">
13 {{ formErrors.name }}
dc8bc31b
C
14 </div>
15 </div>
16
92fb909c
C
17 <div class="form-group">
18 <label for="nsfw">NSFW</label>
19 <input
20 type="checkbox" id="nsfw"
21 formControlName="nsfw"
22 >
23 </div>
24
6e07c3de
C
25 <div class="form-group">
26 <label for="category">Category</label>
27 <select class="form-control" id="category" formControlName="category">
28 <option></option>
29 <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
30 </select>
31
32 <div *ngIf="formErrors.category" class="alert alert-danger">
33 {{ formErrors.category }}
34 </div>
35 </div>
36
d07137b9
C
37 <div class="form-group">
38 <label for="licence">Licence</label>
39 <select class="form-control" id="licence" formControlName="licence">
40 <option></option>
41 <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
42 </select>
43
44 <div *ngIf="formErrors.licence" class="alert alert-danger">
45 {{ formErrors.licence }}
46 </div>
47 </div>
48
db216afd
C
49 <div class="form-group">
50 <label for="language">Language</label>
51 <select class="form-control" id="language" formControlName="language">
52 <option></option>
53 <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
54 </select>
55
56 <div *ngIf="formErrors.language" class="alert alert-danger">
57 {{ formErrors.language }}
58 </div>
59 </div>
60
763bed9b 61 <div class="form-group">
bf57d5ee 62 <label for="tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
e822fdae 63 <input
4b2f33f3
C
64 type="text" class="form-control" id="currentTag"
65 formControlName="currentTag" (keyup)="onTagKeyPress($event)"
e822fdae 66 >
4b2f33f3
C
67 <div *ngIf="formErrors.currentTag" class="alert alert-danger">
68 {{ formErrors.currentTag }}
e822fdae
C
69 </div>
70 </div>
71
72 <div class="tags">
4b2f33f3 73 <div class="label label-primary tag" *ngFor="let tag of tags">
e822fdae
C
74 {{ tag }}
75 <span class="remove" (click)="removeTag(tag)">x</span>
76 </div>
77 </div>
78
bf57d5ee
C
79 <div *ngIf="tagsError" class="alert alert-danger">
80 {{ tagsError }}
81 </div>
82
e822fdae
C
83 <div class="form-group">
84 <label for="videofile">File</label>
85 <div class="btn btn-default btn-file" [ngClass]="{ 'disabled': filename !== null }" >
763bed9b 86 <span>Select the video...</span>
e822fdae
C
87 <input
88 type="file" name="videofile" id="videofile"
89 ng2FileSelect [uploader]="uploader" [disabled]="filename !== null"
bf57d5ee 90 (change)="fileChanged()"
e822fdae 91 >
763bed9b 92 </div>
e822fdae 93 </div>
dc8bc31b 94
e822fdae
C
95 <div class="file-to-upload">
96 <div class="file" *ngIf="uploader.queue.length > 0">
97 <span class="filename">{{ filename }}</span>
98 <span class="glyphicon glyphicon-remove" (click)="removeFile()"></span>
99 </div>
763bed9b 100 </div>
dc8bc31b 101
bf57d5ee
C
102 <div *ngIf="fileError" class="alert alert-danger">
103 {{ fileError }}
104 </div>
105
dc8bc31b
C
106 <div class="form-group">
107 <label for="description">Description</label>
108 <textarea
4b2f33f3
C
109 id="description" class="form-control" placeholder="Description..."
110 formControlName="description"
dc8bc31b
C
111 >
112 </textarea>
4b2f33f3
C
113 <div *ngIf="formErrors.description" class="alert alert-danger">
114 {{ formErrors.description }}
dc8bc31b
C
115 </div>
116 </div>
117
e822fdae
C
118 <div class="progress">
119 <progressbar [value]="uploader.progress" max="100"></progressbar>
dc8bc31b
C
120 </div>
121
e822fdae
C
122 <div class="form-group">
123 <input
46485303 124 type="button" value="Upload" class="btn btn-default form-control"
46485303 125 (click)="upload()"
e822fdae
C
126 >
127 </div>
dc8bc31b 128</form>