aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-interface/my-account-interface-settings.component.html
blob: f34e77f6a4eaa06cac23e554beab2e74fcc647bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<form role="form" (ngSubmit)="updateInterfaceSettings()" [formGroup]="form">
  <div class="form-group">
    <label i18n for="theme">Theme</label>

    <div class="peertube-select-container">
      <select formControlName="theme" id="theme">
        <option i18n value="default">default</option>

        <option *ngFor="let theme of availableThemes" [value]="theme">{{ theme }}</option>
      </select>
    </div>
  </div>
</form>