bitwarden-estensione-browser/apps/browser/src/popup/settings/sync.component.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1007 B
HTML
Raw Normal View History

2018-04-13 17:49:03 +02:00
<header>
<div class="left">
<button type="button" routerLink="/tabs/settings">
<span class="header-icon"><i class="bwi bwi-angle-left" aria-hidden="true"></i></span>
2018-04-13 17:49:03 +02:00
<span>{{ "back" | i18n }}</span>
</button>
2018-04-13 17:49:03 +02:00
</div>
2021-11-02 23:28:53 +01:00
<h1 class="center">
2018-04-13 17:49:03 +02:00
<span class="title">{{ "sync" | i18n }}</span>
2021-11-02 23:28:53 +01:00
</h1>
2018-04-13 17:49:03 +02:00
<div class="right"></div>
</header>
<main tabindex="-1">
2018-04-13 17:49:03 +02:00
<div class="content center-content">
2019-02-21 22:53:57 +01:00
<button
type="button"
class="btn block primary"
aria-describedby="lastSyncHint"
2019-02-21 22:53:57 +01:00
(click)="sync()"
#syncBtn
[disabled]="$any(syncBtn).loading"
2019-02-21 22:53:57 +01:00
[appApiAction]="syncPromise"
>
<span [hidden]="$any(syncBtn).loading">{{ "syncVaultNow" | i18n }}</span>
<i
class="bwi bwi-spinner bwi-lg bwi-spin"
[hidden]="!$any(syncBtn).loading"
aria-hidden="true"
></i>
2018-04-13 17:49:03 +02:00
</button>
<p id="lastSyncHint" class="text-center text-muted small">
{{ "lastSync" | i18n }} {{ lastSync }}
</p>
2018-04-13 17:49:03 +02:00
</div>
</main>