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

stub out 2fa component

This commit is contained in:
Kyle Spearrin
2018-01-31 22:54:13 -05:00
parent 8f7ae6cfaa
commit 0328977c14
5 changed files with 84 additions and 1 deletions

View File

@@ -7,11 +7,13 @@ import {
import { HintComponent } from './accounts/hint.component';
import { LoginComponent } from './accounts/login.component';
import { RegisterComponent } from './accounts/register.component';
import { TwoFactorComponent } from './accounts/two-factor.component';
import { VaultComponent } from './vault/vault.component';
const routes: Routes = [
{ path: '', redirectTo: '/login', pathMatch: 'full' },
{ path: 'login', component: LoginComponent },
{ path: '2fa', component: TwoFactorComponent },
{ path: 'register', component: RegisterComponent },
{ path: 'vault', component: VaultComponent },
{ path: 'hint', component: HintComponent },