bitwarden-estensione-browser/src/app/settings/options.component.html

25 lines
992 B
HTML
Raw Normal View History

2018-06-25 22:44:06 +02:00
<div class="page-header">
<h1>{{'options' | i18n}}</h1>
</div>
2018-06-25 23:17:55 +02:00
<p>{{'optionsDesc' | i18n}}</p>
2018-06-25 22:44:06 +02:00
<div class="row">
<div class="col-6">
<div class="form-group">
<label for="locale">{{'language' | i18n}}</label>
<select id="locale" name="Locale" [(ngModel)]="locale" (change)="saveLocale()" class="form-control">
<option *ngFor="let o of localeOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
<small class="form-text text-muted">{{'languageDesc' | i18n}}</small>
</div>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="disableIcons" name="DisableIcons" [(ngModel)]="disableIcons" (change)="saveIcons()">
<label class="form-check-label" for="disableIcons">
{{'disableIcons' | i18n}}
</label>
</div>
<small class="form-text text-muted">{{'disableIconsDesc' | i18n}}</small>
</div>