1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-24 21:41:33 +01:00

[PM-1024] feat: add content to login settings component

This commit is contained in:
Andreas Coroiu 2023-05-04 09:18:52 +02:00
parent d231811136
commit bc6cff8a66
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A
4 changed files with 20 additions and 3 deletions

View File

@ -16,7 +16,7 @@
[appApiAction]="formPromise"
ngNativeValidate
autocomplete="off"
class="tw-mb-3"
class="tw-mb-14"
>
<div class="row">
<div class="col-6">

View File

@ -1 +1,7 @@
Passkey login settings
<h2 bitTypography="h2">{{ "loginWithPasskey" | i18n }}</h2>
<p bitTypography="body1">
{{ "loginWithPasskeyInfo" | i18n }}
<a bitLink href="???">{{ "learnMoreAboutPasswordless" | i18n }}</a>
</p>
<button type="button" bitButton>{{ "enable" | i18n }}</button>

View File

@ -1,9 +1,11 @@
import { NgModule } from "@angular/core";
import { SharedModule } from "../../shared";
import { Fido2LoginSettingsComponent } from "./fido2-login-settings.component";
@NgModule({
imports: [],
imports: [SharedModule],
declarations: [Fido2LoginSettingsComponent],
exports: [Fido2LoginSettingsComponent],
})

View File

@ -625,6 +625,15 @@
"loginWithMasterPassword": {
"message": "Log in with master password"
},
"loginWithPasskey": {
"message": "Log in with passkey"
},
"loginWithPasskeyInfo": {
"message": "Use facial recognition, a fingerprint, or other FIDO2 security key to log in instead of your email and password."
},
"learnMoreAboutPasswordless": {
"message": "Learn more about passwordless"
},
"createAccount": {
"message": "Create account"
},