1
0
Fork 0
peertube/client/src/app/videos/video-edit/video-add.component.html

115 lines
3.4 KiB
HTML
Raw Normal View History

2016-03-14 12:50:19 +00:00
<h3>Upload a video</h3>
2016-06-04 18:37:38 +00:00
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
<form novalidate [formGroup]="form">
2016-03-14 12:50:19 +00:00
<div class="form-group">
<label for="name">Name</label>
2016-03-14 12:50:19 +00:00
<input
2016-09-09 20:16:51 +00:00
type="text" class="form-control" id="name"
formControlName="name"
2016-03-14 12:50:19 +00:00
>
2016-09-09 20:16:51 +00:00
<div *ngIf="formErrors.name" class="alert alert-danger">
{{ formErrors.name }}
2016-03-14 12:50:19 +00:00
</div>
</div>
2017-04-04 19:37:03 +00:00
<div class="form-group">
<label for="nsfw">NSFW</label>
<input
type="checkbox" id="nsfw"
formControlName="nsfw"
>
</div>
2017-03-22 20:15:55 +00:00
<div class="form-group">
<label for="category">Category</label>
<select class="form-control" id="category" formControlName="category">
<option></option>
<option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
</select>
<div *ngIf="formErrors.category" class="alert alert-danger">
{{ formErrors.category }}
</div>
</div>
2017-03-27 19:11:37 +00:00
<div class="form-group">
<label for="licence">Licence</label>
<select class="form-control" id="licence" formControlName="licence">
<option></option>
<option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
</select>
<div *ngIf="formErrors.licence" class="alert alert-danger">
{{ formErrors.licence }}
</div>
</div>
2017-04-07 12:57:05 +00:00
<div class="form-group">
<label for="language">Language</label>
<select class="form-control" id="language" formControlName="language">
<option></option>
<option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
</select>
<div *ngIf="formErrors.language" class="alert alert-danger">
{{ formErrors.language }}
</div>
</div>
2016-03-16 19:59:56 +00:00
<div class="form-group">
<label for="tags" class="label-tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
<tag-input
[ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
formControlName="tags" maxItems="3" modelAsStrings="true"
></tag-input>
</div>
<div class="form-group">
<label for="videofile">File</label>
<div class="btn btn-default btn-file" [ngClass]="{ 'disabled': filename !== null }" >
2016-03-16 19:59:56 +00:00
<span>Select the video...</span>
<input
type="file" name="videofile" id="videofile"
ng2FileSelect [uploader]="uploader" [disabled]="filename !== null"
(change)="fileChanged()"
>
2016-03-16 19:59:56 +00:00
</div>
</div>
2016-03-14 12:50:19 +00:00
<div class="file-to-upload">
<div class="file" *ngIf="uploader.queue.length > 0">
<span class="filename">{{ filename }}</span>
<span class="glyphicon glyphicon-remove" (click)="removeFile()"></span>
</div>
2016-03-16 19:59:56 +00:00
</div>
2016-03-14 12:50:19 +00:00
<div *ngIf="fileError" class="alert alert-danger">
{{ fileError }}
</div>
2016-03-14 12:50:19 +00:00
<div class="form-group">
<label for="description">Description</label>
<textarea
2016-09-09 20:16:51 +00:00
id="description" class="form-control" placeholder="Description..."
formControlName="description"
2016-03-14 12:50:19 +00:00
>
</textarea>
2016-09-09 20:16:51 +00:00
<div *ngIf="formErrors.description" class="alert alert-danger">
{{ formErrors.description }}
2016-03-14 12:50:19 +00:00
</div>
</div>
<div class="progress">
<progressbar [value]="uploader.progress" max="100"></progressbar>
2016-03-14 12:50:19 +00:00
</div>
<div class="form-group">
<input
type="button" value="Upload" class="btn btn-default form-control"
(click)="upload()"
>
</div>
2016-03-14 12:50:19 +00:00
</form>