mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 21:23:34 +00:00
* remember me label triggers toggle * fix using new bitCheckbox * changes using merge * Update apps/web/src/app/accounts/login/login.component.html Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com> * CheckboxModule imported Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { CheckboxModule } from "@bitwarden/components";
|
|
|
|
import { SharedModule } from "../../shared";
|
|
|
|
import { LoginWithDeviceComponent } from "./login-with-device.component";
|
|
import { LoginComponent } from "./login.component";
|
|
|
|
@NgModule({
|
|
imports: [SharedModule, CheckboxModule],
|
|
declarations: [LoginComponent, LoginWithDeviceComponent],
|
|
exports: [LoginComponent, LoginWithDeviceComponent],
|
|
})
|
|
export class LoginModule {}
|