1 <div class=
"margin-content">
2 <div class=
"title-page title-page-single">
6 <div *
ngIf=
"error" class=
"alert alert-danger">{{ error }}
</div>
8 <div *
ngIf=
"!isUploadingVideo" class=
"upload-video-container">
9 <div class=
"upload-video">
10 <div class=
"icon icon-upload"></div>
12 <div class=
"button-file">
13 <span>Select the file to upload
</span>
14 <input #videofileInput
type=
"file" name=
"videofile" id=
"videofile" (change)=
"fileChange()" />
17 <div class=
"form-group">
18 <select [(ngModel)]=
"firstStepPrivacyId">
19 <option *
ngFor=
"let privacy of videoPrivacies" [value]=
"privacy.id">{{ privacy.label }}
</option>
23 <div class=
"form-group">
24 <select [(ngModel)]=
"firstStepChannelId">
25 <option *
ngFor=
"let channel of userVideoChannels" [value]=
"channel.id">{{ channel.label }}
</option>
32 *
ngIf=
"isUploadingVideo" [value]=
"videoUploadPercents"
33 [ngClass]=
"{ processing: videoUploadPercents === 100 && videoUploaded === false }"
36 <!-- Hidden because we need to load the component -->
37 <form [hidden]=
"!isUploadingVideo" novalidate [formGroup]=
"form">
39 [form]=
"form" [formErrors]=
"formErrors"
40 [validationMessages]=
"validationMessages" [videoPrivacies]=
"videoPrivacies"
44 <div class=
"submit-container">
45 <div *
ngIf=
"videoUploaded === false" class=
"message-submit">Publish will be available when upload is finished
</div>
47 <div class=
"submit-button" (click)=
"updateSecondStep()" [ngClass]=
"{ disabled: !form.valid || videoUploaded !== true }">
48 <span class=
"icon icon-validate"></span>
49 <input type=
"button" value=
"Publish" />