]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-interface/my-account-interface-settings.component.html
WIP plugins: load theme on client side
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-interface / my-account-interface-settings.component.html
CommitLineData
7cd4d2ba
C
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">
ffb321be
C
7 <option i18n value="instance-default">instance default</option>
8 <option i18n value="default">peertube default</option>
7cd4d2ba
C
9
10 <option *ngFor="let theme of availableThemes" [value]="theme">{{ theme }}</option>
11 </select>
12 </div>
13 </div>
ffb321be
C
14
15 <input type="submit" i18n-value value="Save" [disabled]="!form.valid">
7cd4d2ba 16</form>