1
0
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:
rr-bw
2024-09-10 16:26:54 -07:00
parent b64552f183
commit e2434ff397
6 changed files with 47 additions and 9 deletions

View File

@@ -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 {}