1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-20 14:59:32 +01:00

PM-1049 - Move login-decryption-options in web into own folder

This commit is contained in:
Jared Snider 2023-05-18 18:24:38 -04:00
parent 928f2302a9
commit f82a067ef1
No known key found for this signature in database
GPG Key ID: A149DDD612516286
4 changed files with 23 additions and 5 deletions

View File

@ -22,15 +22,33 @@
</form>
<div class="tw-flex tw-flex-col">
<button bitButton type="button" buttonType="primary" [block]="true" class="tw-mb-3">
<button
bitButton
type="button"
buttonType="primary"
[block]="true"
class="tw-mb-3"
[appA11yTitle]="'approveFromYourOtherDevice' | i18n"
>
{{ "approveFromYourOtherDevice" | i18n }}
</button>
<button bitButton type="button" buttonType="secondary" class="tw-mb-3">
<button
bitButton
type="button"
buttonType="secondary"
class="tw-mb-3"
[appA11yTitle]="'requestAdminApproval' | i18n"
>
{{ "requestAdminApproval" | i18n }}
</button>
<button bitButton type="button" buttonType="secondary">
<button
bitButton
type="button"
buttonType="secondary"
[appA11yTitle]="'approveWithMasterPassword' | i18n"
>
{{ "approveWithMasterPassword" | i18n }}
</button>
</div>

View File

@ -4,7 +4,7 @@ import { CheckboxModule } from "@bitwarden/components";
import { SharedModule } from "../../../app/shared";
import { LoginDecryptionOptionsComponent } from "./login-decryption-options.component";
import { LoginDecryptionOptionsComponent } from "./login-decryption-options/login-decryption-options.component";
import { LoginWithDeviceComponent } from "./login-with-device.component";
import { LoginComponent } from "./login.component";

View File

@ -18,7 +18,7 @@ import { AcceptEmergencyComponent } from "./auth/accept-emergency.component";
import { AcceptOrganizationComponent } from "./auth/accept-organization.component";
import { HintComponent } from "./auth/hint.component";
import { LockComponent } from "./auth/lock.component";
import { LoginDecryptionOptionsComponent } from "./auth/login/login-decryption-options.component";
import { LoginDecryptionOptionsComponent } from "./auth/login/login-decryption-options/login-decryption-options.component";
import { LoginWithDeviceComponent } from "./auth/login/login-with-device.component";
import { LoginComponent } from "./auth/login/login.component";
import { RecoverDeleteComponent } from "./auth/recover-delete.component";