1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

register page

This commit is contained in:
Kyle Spearrin
2018-01-31 14:19:21 -05:00
parent f524322469
commit ae955e6650
9 changed files with 171 additions and 36 deletions

View File

@@ -5,11 +5,13 @@ import {
} from '@angular/router';
import { LoginComponent } from './accounts/login.component';
import { RegisterComponent } from './accounts/register.component';
import { VaultComponent } from './vault/vault.component';
const routes: Routes = [
{ path: '', redirectTo: '/login', pathMatch: 'full' },
{ path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent },
{ path: 'vault', component: VaultComponent },
];