bitwarden-desktop/src/app/accounts/lock.component.html

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

78 lines
2.6 KiB
HTML
Raw Normal View History

2018-02-10 04:47:53 +01:00
<form id="lock-page" (ngSubmit)="submit()">
<div class="content">
<p aria-hidden="true"><i class="bwi bwi-lock bwi-4x text-muted"></i></p>
<p>{{ "yourVaultIsLocked" | i18n }}</p>
2018-02-10 04:47:53 +01:00
<div class="box last">
<div class="box-content">
<div class="box-content-row box-content-row-flex" appBoxRow *ngIf="!hideInput">
2019-02-13 16:06:58 +01:00
<div class="row-main" *ngIf="pinLock">
<label for="pin">{{ "pin" | i18n }}</label>
2019-04-02 04:43:42 +02:00
<input
id="pin"
type="{{ showPassword ? 'text' : 'password' }}"
name="PIN"
class="monospaced"
[(ngModel)]="pin"
required
appInputVerbatim
/>
2019-02-13 16:06:58 +01:00
</div>
<div class="row-main" *ngIf="!pinLock">
2018-02-24 19:48:55 +01:00
<label for="masterPassword">{{ "masterPass" | i18n }}</label>
<input
id="masterPassword"
type="{{ showPassword ? 'text' : 'password' }}"
name="MasterPassword"
class="monospaced"
[(ngModel)]="masterPassword"
required
2019-04-02 04:43:42 +02:00
appInputVerbatim
2019-06-04 06:00:46 +02:00
/>
2019-01-08 06:21:28 +01:00
</div>
2020-07-23 23:24:35 +02:00
<div class="action-buttons">
<a
class="row-btn"
href="#"
appStopClick
appBlurClick
2020-07-23 23:24:35 +02:00
role="button"
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
(click)="togglePassword()"
>
2020-07-23 23:24:35 +02:00
<i
class="bwi bwi-lg"
2020-07-23 23:24:35 +02:00
aria-hidden="true"
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
2020-07-23 23:24:35 +02:00
></i>
</a>
</div>
</div>
2021-12-20 15:47:17 +01:00
</div>
2019-06-04 06:00:46 +02:00
<div class="box-footer">
{{ "loggedInAsOn" | i18n: email:webVaultHostname }}
2021-12-20 15:47:17 +01:00
</div>
</div>
<div class="buttons with-rows">
<div class="buttons-row" *ngIf="supportsBiometric && biometricLock">
2021-12-20 15:47:17 +01:00
<button
2020-07-23 23:24:35 +02:00
type="button"
class="btn block"
[ngClass]="{ 'primary font-weight-bold': hideInput }"
2020-07-23 23:24:35 +02:00
appBlurClick
(click)="unlockBiometric()"
2021-12-20 15:47:17 +01:00
>
{{ biometricText | i18n }}
2020-07-23 23:24:35 +02:00
</button>
2021-12-20 15:47:17 +01:00
</div>
<div class="buttons-row">
<button type="submit" class="btn primary block" appBlurClick *ngIf="!hideInput">
<i class="bwi bwi-unlock" aria-hidden="true"></i> <b>{{ "unlock" | i18n }}</b>
2020-07-23 23:24:35 +02:00
</button>
<button type="button" class="btn block" appBlurClick (click)="logOut()">
{{ "logOut" | i18n }}
</button>
2021-12-20 15:47:17 +01:00
</div>
2018-02-10 04:47:53 +01:00
</div>
2021-12-20 15:47:17 +01:00
</div>
2018-02-10 04:47:53 +01:00
</form>