aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared/video-edit.component.html
blob: 8c071ce125f68bd0846addf326f540f12b09287e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<div class="video-edit row" [formGroup]="form">

  <div class="col-md-8">
    <div class="form-group">
      <label for="name">Title</label>
      <input type="text" id="name" formControlName="name" />
      <div *ngIf="formErrors.name" class="form-error">
        {{ formErrors.name }}
      </div>
    </div>

    <div class="form-group">
      <label class="label-tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
      <tag-input
          [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
          formControlName="tags" maxItems="5" modelAsStrings="true"
      ></tag-input>
    </div>

    <div class="form-group">
      <label for="description">Description</label>
      <my-video-description formControlName="description"></my-video-description>

      <div *ngIf="formErrors.description" class="form-error">
        {{ formErrors.description }}
      </div>
    </div>
  </div>

  <div class="col-md-4">
    <div class="form-group">
      <label for="category">Category</label>
      <select id="category" formControlName="category">
        <option></option>
        <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
      </select>

      <div *ngIf="formErrors.category" class="form-error">
        {{ formErrors.category }}
      </div>
    </div>

    <div class="form-group">
      <label for="licence">Licence</label>
      <select id="licence" formControlName="licence">
        <option></option>
        <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
      </select>

      <div *ngIf="formErrors.licence" class="form-error">
        {{ formErrors.licence }}
      </div>
    </div>

    <div class="form-group">
      <label for="language">Language</label>
      <select id="language" formControlName="language">
        <option></option>
        <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
      </select>

      <div *ngIf="formErrors.language" class="form-error">
        {{ formErrors.language }}
      </div>
    </div>

    <div class="form-group">
      <label for="privacy">Privacy</label>
      <select id="privacy" formControlName="privacy">

        <option></option>
        <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
      </select>

      <div *ngIf="formErrors.privacy" class="form-error">
        {{ formErrors.privacy }}
      </div>
    </div>

    <div class="form-group form-group-checkbox">
      <input type="checkbox" id="nsfw" formControlName="nsfw" />
      <label for="nsfw">This video contains mature or explicit content</label>
    </div>

  </div>
</div>