aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
blob: 98587eb18505a26917f8d624776e7ecc9e5111f7 (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
<form role="form" (ngSubmit)="updateDetails()" [formGroup]="form">
  <div class="form-group">
    <label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
    <my-help
      helpType="custom" i18n-customHtml
      customHtml="With <strong>Do not list</strong> or <strong>Blur thumbnails</strong>, a confirmation will be requested to watch the video."
    ></my-help>

    <div class="peertube-select-container">
      <select id="nsfwPolicy" formControlName="nsfwPolicy">
        <option i18n value="do_not_list">Do not list</option>
        <option i18n value="blur">Blur thumbnails</option>
        <option i18n value="display">Display</option>
      </select>
    </div>
  </div>

  <div class="form-group">
    <input
      type="checkbox" id="autoPlayVideo"
      formControlName="autoPlayVideo"
    >
    <label for="autoPlayVideo"></label>
    <label i18n for="autoPlayVideo">Automatically plays video</label>
  </div>

  <input type="submit" i18n-value value="Save" [disabled]="!form.valid">
</form>