mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-01 21:10:49 +08:00
* Introduce additional options heading Text will be needed for the UI changes later on anyway * Move enableContextMenuItem from options.component to autofill.component * Move copy TOTP automatically from options.component to autofill.component * Move clearClipboard from options.component to autofill.component * Move showCardsCurrentTab from options.component to autofill.component * Move showIdentitiesCurrentTab from options.component to autofill.component * Remove options.component as all controls have been migrated Delete options.component Import within AppModule Delete obsolete route Remove animation/page transition Remove button from settings.component.html --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<app-header>
|
|
<div class="left"></div>
|
|
<h1 class="center">
|
|
<span class="title">{{ "settings" | i18n }}</span>
|
|
</h1>
|
|
<div class="right">
|
|
<app-pop-out></app-pop-out>
|
|
</div>
|
|
</app-header>
|
|
<main tabindex="-1">
|
|
<div class="box list">
|
|
<div class="box-content single-line">
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/account-security"
|
|
>
|
|
<div class="row-main">{{ "accountSecurity" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/autofill"
|
|
>
|
|
<div class="row-main">{{ "autofill" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/notifications"
|
|
>
|
|
<div class="row-main">{{ "notifications" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/vault-settings"
|
|
>
|
|
<div class="row-main">{{ "vault" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/appearance"
|
|
>
|
|
<div class="row-main">{{ "appearance" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="box-content-row box-content-row-flex text-default"
|
|
routerLink="/about"
|
|
>
|
|
<div class="row-main">{{ "about" | i18n }}</div>
|
|
<i class="bwi bwi-angle-right bwi-lg row-sub-icon" aria-hidden="true"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</main>
|