[0.0.2] Adds Google and Github OAuth2 Login

Implements integration with the Backend API feature of OAuth2 Login with Google and Github.
This commit is contained in:
2022-11-10 00:49:03 -03:00
parent 835c4d0cc4
commit 64ec23f2c1
19 changed files with 1596 additions and 1136 deletions

View File

@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule, Routes } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { CallbackComponent } from './header/header-popup/callback/callback.component';
const routes: Routes = [
{
@@ -12,6 +13,10 @@ const routes: Routes = [
{
path: 'home',
component: HomeComponent
},
{
path: 'callback',
component: CallbackComponent
}
]