1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-16 16:59:30 +00:00

Add PoC to browser

This commit is contained in:
Hinton
2025-03-19 23:02:43 +09:00
parent 42ce4be42c
commit ccd3a3d3da
7 changed files with 53 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
<!--
<!--
# Table of Contents
This file contains a single consolidated template for all visual clients.
@@ -10,6 +10,12 @@
MASTER_PASSWORD_ENTRY: displays the master password input field + login button
-->
<p i18n>Updated {minutes, plural, =0 {just now} =1 {one minute ago} other {{{ 5 }} minutes ago}}</p>
<p i18n>This is a inline link to <a href="/settings">Settings</a> with text before and after.</p>
<p i18n>A phrase we really <strong>need</strong> to highlight!</p>
<form [bitSubmit]="submit" [formGroup]="formGroup">
<div [ngClass]="{ 'tw-hidden': loginUiState !== LoginUiState.EMAIL_ENTRY }">
<!-- Email Address input -->

View File

@@ -73,6 +73,7 @@ export class LoginComponent implements OnInit, OnDestroy {
private destroy$ = new Subject<void>();
readonly Icons = { WaveIcon, VaultIcon };
protected minutes = 5;
clientType: ClientType;
ClientType = ClientType;