1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00
Files
browser/libs/vault/src/cipher-view/login-credentials/login-credentials-view.component.html
Nick Krantz b27a1a5337 [PM-12998] View Cipher: Color Password (#12354)
* show color password for visible passwords in vault view

- The password input will be visually hidden
- Adds tests for the login credentials component

* formatting
2024-12-20 09:44:36 -06:00

161 lines
4.8 KiB
HTML

<bit-section>
<bit-section-header>
<h2 bitTypography="h6">{{ "loginCredentials" | i18n }}</h2>
</bit-section-header>
<read-only-cipher-card>
<bit-form-field *ngIf="cipher.login.username">
<bit-label [appTextDrag]="cipher.login.username">
{{ "username" | i18n }}
</bit-label>
<input
id="userName"
readonly
bitInput
type="text"
[value]="cipher.login.username"
aria-readonly="true"
data-testid="login-username"
/>
<button
bitIconButton="bwi-clone"
bitSuffix
type="button"
[appCopyClick]="cipher.login.username"
[valueLabel]="'username' | i18n"
showToast
[appA11yTitle]="'copyUsername' | i18n"
data-testid="copy-username"
></button>
</bit-form-field>
<bit-form-field *ngIf="cipher.login.password">
<bit-label [appTextDrag]="cipher.login.password" id="password-label">
{{ "password" | i18n }}
</bit-label>
<input
id="password"
[ngClass]="{ 'tw-hidden': passwordRevealed }"
readonly
bitInput
type="password"
[value]="cipher.login.password"
aria-readonly="true"
data-testid="login-password"
/>
<!-- Use a wrapping span to "recreate" a readonly input as close as possible -->
<span
*ngIf="passwordRevealed"
role="textbox"
tabindex="0"
data-testid="login-password-color"
aria-readonly="true"
[attr.aria-label]="cipher.login.password"
aria-labelledby="password-label"
>
<bit-color-password
class="tw-font-mono"
[password]="cipher.login.password"
></bit-color-password>
</span>
<button
*ngIf="cipher.viewPassword && passwordRevealed"
bitIconButton="bwi-numbered-list"
bitSuffix
type="button"
data-testid="toggle-password-count"
[appA11yTitle]="(showPasswordCount ? 'hideCharacterCount' : 'showCharacterCount') | i18n"
[attr.aria-expanded]="showPasswordCount"
appStopClick
(click)="togglePasswordCount()"
></button>
<button
*ngIf="cipher.viewPassword"
bitSuffix
type="button"
bitIconButton
bitPasswordInputToggle
data-testid="toggle-password"
(toggledChange)="pwToggleValue($event)"
></button>
<button
*ngIf="cipher.viewPassword"
bitIconButton="bwi-clone"
bitSuffix
type="button"
[appCopyClick]="cipher.login.password"
[valueLabel]="'password' | i18n"
showToast
[appA11yTitle]="'copyPassword' | i18n"
data-testid="copy-password"
(click)="logCopyEvent()"
></button>
</bit-form-field>
<div
*ngIf="showPasswordCount && passwordRevealed"
[ngClass]="{ 'tw-mt-3': !cipher.login.totp, 'tw-mb-2': true }"
>
<bit-color-password
[password]="cipher.login.password"
[showCount]="true"
></bit-color-password>
</div>
<bit-form-field *ngIf="cipher.login?.fido2Credentials?.length > 0">
<bit-label [appTextDrag]="fido2CredentialCreationDateValue"
>{{ "typePasskey" | i18n }}
</bit-label>
<input
id="fido"
readonly
bitInput
type="text"
[value]="fido2CredentialCreationDateValue"
aria-readonly="true"
data-testid="login-passkey"
/>
</bit-form-field>
<bit-form-field *ngIf="cipher.login.totp">
<bit-label [appTextDrag]="totpCodeCopyObj?.totpCode"
>{{ "verificationCodeTotp" | i18n }}
<span
*ngIf="!(isPremium$ | async)"
bitBadge
variant="success"
class="tw-ml-2 tw-cursor-pointer"
(click)="getPremium(cipher.organizationId)"
slot="end"
>
{{ "premium" | i18n }}
</span>
</bit-label>
<input
id="totp"
readonly
bitInput
[type]="!(isPremium$ | async) ? 'password' : 'text'"
[value]="totpCodeCopyObj?.totpCodeFormatted || '*** ***'"
aria-readonly="true"
data-testid="login-totp"
class="tw-font-mono"
/>
<div
*ngIf="isPremium$ | async"
bitTotpCountdown
[cipher]="cipher"
bitSuffix
(sendCopyCode)="setTotpCopyCode($event)"
></div>
<button
bitIconButton="bwi-clone"
bitSuffix
type="button"
[appCopyClick]="totpCodeCopyObj?.totpCode"
[valueLabel]="'verificationCodeTotp' | i18n"
showToast
[appA11yTitle]="'copyVerificationCode' | i18n"
data-testid="copy-totp"
[disabled]="!(isPremium$ | async)"
class="disabled:tw-cursor-default"
></button>
</bit-form-field>
</read-only-cipher-card>
</bit-section>