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

22 lines
486 B
HTML
Raw Normal View History

2017-04-21 16:26:09 +00:00
<div class="row">
<div class="content-padding">
2016-03-14 12:50:19 +00:00
2017-04-21 16:26:09 +00:00
<h3>Update {{ video?.name }}</h3>
2016-06-04 18:37:38 +00:00
2017-04-21 16:26:09 +00:00
<form novalidate [formGroup]="form">
2017-03-22 20:15:55 +00:00
2017-12-07 10:15:19 +00:00
<my-video-edit
[form]="form" [formErrors]="formErrors"
[validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies"
></my-video-edit>
2016-03-14 12:50:19 +00:00
2017-04-21 16:26:09 +00:00
<div class="form-group">
<input
type="button" value="Update" class="btn btn-default form-control"
(click)="update()"
>
</div>
</form>
</div>
2017-04-21 16:26:09 +00:00
</div>