mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
routing to login page
This commit is contained in:
3
src/app/accounts/login.component.html
Normal file
3
src/app/accounts/login.component.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<form>
|
||||
Login form.
|
||||
</form>
|
||||
16
src/app/accounts/login.component.ts
Normal file
16
src/app/accounts/login.component.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as template from './login.component.html';
|
||||
|
||||
import {
|
||||
Component,
|
||||
OnInit,
|
||||
} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-login',
|
||||
template: template,
|
||||
})
|
||||
export class LoginComponent implements OnInit {
|
||||
ngOnInit() {
|
||||
// TODO?
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user