]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-update.component.html
Add ability to update thumbnail and preview on client
[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"
15a7387d 10 [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
ff249f49 11 ></my-video-edit>
dc8bc31b 12
4cc66133 13 <div class="submit-container">
cadb46d8 14 <div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid }">
4cc66133 15 <span class="icon icon-validate"></span>
cadb46d8 16 <input type="button" value="Update" />
4cc66133 17 </div>
897ec54d
C
18 </div>
19 </form>
897ec54d 20</div>