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

38 lines
1.6 KiB
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-26 15:04:12 +02:00
<form (ngSubmit)="submit()" ngNativeValidate>
<div class="row">
<div class="col-6">
<div class="form-group">
2018-07-19 19:56:44 +02:00
<div class="d-flex">
<label for="locale">{{'language' | i18n}}</label>
<a class="ml-auto" href="https://help.bitwarden.com/article/localization/" target="_blank" rel="noopener" title="{{'learnMore' | i18n}}">
<i class="fa fa-question-circle-o"></i>
</a>
</div>
2018-06-26 15:04:12 +02:00
<select id="locale" name="Locale" [(ngModel)]="locale" 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>
2018-06-25 22:44:06 +02:00
</div>
</div>
2018-06-26 15:04:12 +02:00
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="disableIcons" name="DisableIcons" [(ngModel)]="disableIcons">
<label class="form-check-label" for="disableIcons">
{{'disableIcons' | i18n}}
</label>
2018-07-19 19:56:44 +02:00
<a href="https://help.bitwarden.com/article/website-icons/" target="_blank" rel="noopener" title="{{'learnMore' | i18n}}">
<i class="fa fa-question-circle-o"></i>
</a>
2018-06-26 15:04:12 +02:00
</div>
<small class="form-text text-muted">{{'disableIconsDesc' | i18n}}</small>
2018-06-25 22:44:06 +02:00
</div>
2018-07-18 05:21:23 +02:00
<button type="submit" class="btn btn-primary">
2018-06-26 15:04:12 +02:00
{{'save' | i18n}}
</button>
</form>