aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-update.component.html
blob: c57f35da0d9fd658ea8785dbddc4c0d3abcfde46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="row">
  <div class="content-padding">

  <h3>Update {{ video?.name }}</h3>

  <form novalidate [formGroup]="form">

    <my-video-edit
      [form]="form" [formErrors]="formErrors"
      [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies"
    ></my-video-edit>

    <div class="form-group">
      <input
        type="button" value="Update" class="btn btn-default form-control"
        (click)="update()"
      >
    </div>
  </form>
  </div>
</div>