[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

@@ -13,6 +13,8 @@ import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { LoginComponent } from './header-popup/login/login.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { SignupComponent } from './header-popup/signup/signup.component';
import { CallbackComponent } from './header-popup/callback/callback.component';
import {MatIconModule} from '@angular/material/icon';
@@ -24,7 +26,8 @@ import { SignupComponent } from './header-popup/signup/signup.component';
UserSliderComponent,
HeaderDropdownComponent,
LoginComponent,
SignupComponent
SignupComponent,
CallbackComponent
],
imports: [
CommonModule,
@@ -33,6 +36,7 @@ import { SignupComponent } from './header-popup/signup/signup.component';
FontAwesomeModule,
FormsModule,
ReactiveFormsModule,
MatIconModule,
SharedModule
], exports: [
HeaderComponent,