bitwarden-estensione-browser/apps/browser/src/popup/accounts/login.component.html

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

65 lines
2.3 KiB
HTML
Raw Normal View History

<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" [formGroup]="formGroup">
<header>
<div class="left">
<button type="button" routerLink="/home">{{ "cancel" | i18n }}</button>
2021-12-21 15:43:35 +01:00
</div>
2021-11-02 23:28:53 +01:00
<h1 class="center">
<span class="title">{{ "appName" | i18n }}</span>
2021-12-21 15:43:35 +01:00
</h1>
<div class="right">
<button type="submit" [disabled]="form.loading">
<span [hidden]="form.loading">{{ "login" | i18n }}</span>
<i class="bwi bwi-spinner bwi-lg bwi-spin" [hidden]="!form.loading" aria-hidden="true"></i>
2018-04-04 14:27:31 +02:00
</button>
2021-12-21 15:43:35 +01:00
</div>
</header>
<main tabindex="-1">
2018-04-05 16:29:11 +02:00
<div class="box">
<div class="box-content">
<div class="box-content-row" appBoxRow>
<label for="email">{{ "emailAddress" | i18n }}</label>
<input id="email" type="email" formControlName="email" appInputVerbatim="false" />
</div>
2021-11-02 23:28:53 +01:00
<div class="box-content-row box-content-row-flex" appBoxRow>
<div class="row-main">
<label for="masterPassword">{{ "masterPass" | i18n }}</label>
2021-12-21 15:43:35 +01:00
<input
2018-04-05 16:29:11 +02:00
id="masterPassword"
type="{{ showPassword ? 'text' : 'password' }}"
class="monospaced"
formControlName="masterPassword"
appInputVerbatim
2021-12-21 15:43:35 +01:00
/>
2021-11-02 23:28:53 +01:00
</div>
<div class="action-buttons">
<button
type="button"
class="row-btn"
appStopClick
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
(click)="togglePassword()"
2019-10-08 23:04:44 +02:00
[attr.aria-pressed]="showPassword"
>
<i
class="bwi bwi-lg"
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
2019-10-08 23:04:44 +02:00
aria-hidden="true"
></i>
2018-04-04 14:27:31 +02:00
</button>
2021-12-21 15:43:35 +01:00
</div>
2018-04-04 14:27:31 +02:00
</div>
2018-04-05 16:29:11 +02:00
<div class="box-content-row" [hidden]="!showCaptcha()">
<iframe id="hcaptcha_iframe" height="80"></iframe>
2018-04-04 14:27:31 +02:00
</div>
2021-12-21 15:43:35 +01:00
</div>
</div>
<p class="text-center text-muted" *ngIf="selfHostedDomain">
{{ "loggingInTo" | i18n: selfHostedDomain }}
</p>
2018-04-05 16:29:11 +02:00
<p class="text-center">
<button type="button" routerLink="/hint">{{ "getMasterPasswordHint" | i18n }}</button>
2018-04-05 16:29:11 +02:00
</p>
<app-private-mode-warning></app-private-mode-warning>
</main>
2018-04-04 04:14:54 +02:00
</form>