1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-15 01:11:47 +01:00

[PM-16696] New Device Verification Notice Learn More (#12715)

* add learn more link to new device verification notification page one
This commit is contained in:
Jason Ng 2025-01-06 16:08:29 -05:00 committed by GitHub
parent 066773e983
commit 5a46991e4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,14 @@
<form [formGroup]="formGroup" [bitSubmit]="submit">
<p class="tw-text-center" bitTypography="body1">
{{ "newDeviceVerificationNoticeContentPage1" | i18n }}
<a
bitLink
href="https://bitwarden.com/help/new-device-verification/"
rel="noreferrer"
target="_blank"
>
{{ "learnMore" | i18n }}.
</a>
</p>
<bit-card

View File

@ -20,6 +20,7 @@ import {
FormFieldModule,
RadioButtonModule,
TypographyModule,
LinkModule,
} from "@bitwarden/components";
import {
@ -41,6 +42,7 @@ import {
FormFieldModule,
AsyncActionsModule,
ReactiveFormsModule,
LinkModule,
],
})
export class NewDeviceVerificationNoticePageOneComponent implements OnInit, AfterViewInit {