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

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

72 lines
2.3 KiB
HTML
Raw Normal View History

<form #form (ngSubmit)="submit()" [appApiAction]="formPromise">
<header>
<div class="left">
2018-04-05 04:59:42 +02:00
<a routerLink="/home">{{ "cancel" | i18n }}</a>
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" appBlurClick [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>
2018-04-05 16:29:11 +02:00
<content>
<div class="box">
<div class="box-content">
<div class="box-content-row" appBoxRow>
<label for="email">{{ "emailAddress" | i18n }}</label>
2021-12-21 15:43:35 +01:00
<input
2019-02-21 22:53:57 +01:00
id="email"
type="text"
name="Email"
[(ngModel)]="email"
2021-12-21 15:43:35 +01:00
required
2019-02-21 22:53:57 +01:00
inputmode="email"
appInputVerbatim="false"
2021-12-21 15:43:35 +01:00
/>
</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' }}"
name="MasterPassword"
class="monospaced"
2019-02-21 22:53:57 +01:00
[(ngModel)]="masterPassword"
2021-12-21 15:43:35 +01:00
required
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
appBlurClick
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>
2018-04-05 16:29:11 +02:00
<p class="text-center">
<a routerLink="/hint">{{ "getMasterPasswordHint" | i18n }}</a>
</p>
</content>
2018-04-04 04:14:54 +02:00
</form>