1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

password hint page

This commit is contained in:
Kyle Spearrin
2018-01-31 17:06:14 -05:00
parent 44bfeffcdd
commit 16450f3ba9
7 changed files with 88 additions and 12 deletions

View File

@@ -4,6 +4,7 @@ import {
Routes,
} from '@angular/router';
import { HintComponent } from './accounts/hint.component';
import { LoginComponent } from './accounts/login.component';
import { RegisterComponent } from './accounts/register.component';
import { VaultComponent } from './vault/vault.component';
@@ -13,6 +14,7 @@ const routes: Routes = [
{ path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent },
{ path: 'vault', component: VaultComponent },
{ path: 'hint', component: HintComponent },
];
@NgModule({