mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
create a LoginSecondaryContentComponent for AnonLayout use
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Component } from "@angular/core";
|
||||
import { RouterModule } from "@angular/router";
|
||||
|
||||
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [JslibModule, RouterModule],
|
||||
template: `
|
||||
<div class="tw-text-center">
|
||||
{{ "newToBitwarden" | i18n }}
|
||||
<a class="tw-font-bold" bitLink routerLink="/register">{{ "createAccount" | i18n }}</a>
|
||||
</div>
|
||||
`,
|
||||
})
|
||||
export class LoginSecondaryContentComponent {}
|
||||
Reference in New Issue
Block a user