f34e77f6a4eaa06cac23e554beab2e74fcc647bb
[oweals/peertube.git] /
1 <form role="form" (ngSubmit)="updateInterfaceSettings()" [formGroup]="form">
2   <div class="form-group">
3     <label i18n for="theme">Theme</label>
4
5     <div class="peertube-select-container">
6       <select formControlName="theme" id="theme">
7         <option i18n value="default">default</option>
8
9         <option *ngFor="let theme of availableThemes" [value]="theme">{{ theme }}</option>
10       </select>
11     </div>
12   </div>
13 </form>