reset password

This commit is contained in:
2020-04-24 15:37:27 +02:00
committed by smuddy
parent 0e8a493deb
commit 732353f5bd
14 changed files with 161 additions and 7 deletions

View File

@@ -4,6 +4,8 @@ import {LoginComponent} from './login/login.component';
import {InfoComponent} from './info/info.component';
import {LogoutComponent} from './logout/logout.component';
import {AngularFireAuthGuard, redirectUnauthorizedTo} from '@angular/fire/auth-guard';
import {PasswordComponent} from './password/password.component';
import {PasswordSendComponent} from './password-send/password-send.component';
const routes: Routes = [
@@ -20,6 +22,14 @@ const routes: Routes = [
path: 'logout',
component: LogoutComponent
},
{
path: 'password',
component: PasswordComponent
},
{
path: 'password-send',
component: PasswordSendComponent
},
{
path: 'info',
component: InfoComponent,