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

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

29 lines
858 B
HTML
Raw Normal View History

2018-04-13 17:49:03 +02:00
<header>
<div class="left">
2018-04-13 19:18:43 +02:00
<a 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>
2018-04-13 19:18:43 +02:00
</a>
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>
<content>
<div class="content center-content">
2019-02-21 22:53:57 +01:00
<button
type="button"
class="btn block primary"
(click)="sync()"
#syncBtn
[disabled]="syncBtn.loading"
[appApiAction]="syncPromise"
>
2018-04-13 17:49:03 +02:00
<span [hidden]="syncBtn.loading">{{ "syncVaultNow" | i18n }}</span>
<i class="bwi bwi-spinner bwi-lg bwi-spin" [hidden]="!syncBtn.loading" aria-hidden="true"></i>
2018-04-13 17:49:03 +02:00
</button>
<p class="text-center text-muted small">{{ "lastSync" | i18n }} {{ lastSync }}</p>
</div>
</content>