]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-update.component.html
Move video form inside a component
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.component.html
CommitLineData
897ec54d
C
1<div class="row">
2 <div class="content-padding">
dc8bc31b 3
897ec54d 4 <h3>Update {{ video?.name }}</h3>
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
897ec54d
C
13 <div class="form-group">
14 <input
15 type="button" value="Update" class="btn btn-default form-control"
16 (click)="update()"
17 >
18 </div>
19 </form>
e822fdae 20 </div>
897ec54d 21</div>