1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-28 10:55:27 +02:00
bitwarden-browser/apps/browser/src/popup/accounts/home.component.html

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

19 lines
778 B
HTML
Raw Normal View History

2021-10-01 15:55:53 +02:00
<div class="center-content">
<div class="content">
<div class="logo-image"></div>
<p class="lead text-center">{{ "loginOrCreateNewAccount" | i18n }}</p>
<button type="button" class="btn primary block" routerLink="/login">
<b>{{ "login" | i18n }}</b>
</button>
2021-10-01 15:55:53 +02:00
<button type="button" (click)="launchSsoBrowser()" class="btn block">
<i class="bwi bwi-bank" aria-hidden="true"></i> {{ "enterpriseSingleSignOn" | i18n }}
2021-10-01 15:55:53 +02:00
</button>
<button type="button" class="btn block" routerLink="/register">
{{ "createAccount" | i18n }}
</button>
2021-10-01 15:55:53 +02:00
</div>
</div>
<button type="button" routerLink="/environment" class="settings-icon">
<i class="bwi bwi-cog-f bwi-lg" aria-hidden="true"></i><span>&nbsp;{{ "settings" | i18n }}</span>
</button>