mirror of
https://github.com/Nezumi-2711/foodify-frontend.git
synced 2026-09-22 20:01:17 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
import { CommonModule } from "@angular/common";
|
||||
|
||||
import { AuthRoutingModule } from "./auth-routing.module";
|
||||
import { LoginComponent } from "./login/login.component";
|
||||
|
||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
||||
import { CarouselModule } from "ngx-owl-carousel-o";
|
||||
import { SharedModule } from "../../shared/shared.module";
|
||||
import { ForbiddenComponent } from "./forbidden/forbidden.component";
|
||||
import { SignupComponent } from "./signup/signup.component";
|
||||
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
||||
import { SendEmailComponent } from './send-email/send-email.component';
|
||||
import { EmailVerifiedComponent } from './email-verified/email-verified.component';
|
||||
import { EmailNotVerifiedComponent } from './email-not-verified/email-not-verified.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [LoginComponent, SignupComponent, ForbiddenComponent, ResetPasswordComponent, SendEmailComponent, EmailVerifiedComponent, EmailNotVerifiedComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
AuthRoutingModule,
|
||||
ReactiveFormsModule,
|
||||
CarouselModule,
|
||||
SharedModule,
|
||||
NgbModule,
|
||||
FormsModule],
|
||||
})
|
||||
export class AuthModule { }
|
||||
Reference in New Issue
Block a user