1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-16 01:21:48 +01:00

PM-8113 - 2fa Email Comp - add style changes per discussion with design

This commit is contained in:
Jared Snider 2025-01-28 17:53:36 -05:00
parent 5df561c1a3
commit 1066c1cb42
No known key found for this signature in database
GPG Key ID: A149DDD612516286

View File

@ -1,17 +1,26 @@
<bit-form-field>
<bit-form-field class="!tw-mb-0">
<bit-label>{{ "verificationCode" | i18n }}</bit-label>
<!-- TODO: convert this to use reactive forms to get required styling -->
<!-- TODO: consider reactive forms implementation for future -->
<input
bitInput
type="text"
appAutofocus
appInputVerbatim
required
[(ngModel)]="tokenValue"
(input)="token.emit(tokenValue)"
/>
<bit-hint>
<a bitLink href="#" appStopClick (click)="sendEmail(true)">
{{ "resendCode" | i18n }}
</a></bit-hint
>
</bit-form-field>
<div class="tw-mb-4">
<a
bitTypography="helper"
class="tw-text-main"
bitLink
href="#"
appStopClick
(click)="sendEmail(true)"
>
{{ "resendCode" | i18n }}
</a>
</div>