]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-update.component.html
Add progress bar for video upload
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.component.html
CommitLineData
4cc66133
C
1<div class="margin-content">
2 <div class="title-page title-page-single">
3 Update {{ video?.name }}
4 </div>
1cdb5c0f 5
897ec54d 6 <form novalidate [formGroup]="form">
6e07c3de 7
ff249f49
C
8 <my-video-edit
9 [form]="form" [formErrors]="formErrors"
10 [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies"
11 ></my-video-edit>
dc8bc31b 12
4cc66133
C
13 <div class="submit-container">
14 <div class="submit-button" [ngClass]="{ disabled: !form.valid }">
15 <span class="icon icon-validate"></span>
16 <input type="button" value="Update" (click)="update()" />
17 </div>
897ec54d
C
18 </div>
19 </form>
897ec54d 20</div>