Register & Login form in Angular 9 + Php + MySql + Reactive Form + Flex Layout
Hi Friends, In this document is useful to create Register & Login using angular 9, Php & MySql and Flex Layout. Create an angular project and build the project ng new project_name cd project_name ng serve Open VS Code and import the angular project Install the material angular package and flex layout package ng add @angular/material npm I –s @angular/flex-layout Create a module file for material components and login/register/Home components ng generate module angular-material ng generate component login-register ng generate component home Use the below code in angular material module file. Material Module: Import the material module, Flex in app module.ts import { NgModule } from '@angular/core'; import {A11yModule} from '@angular/cdk/a11y'; import {ClipboardModule} from '@angular/cdk/clipboard'; import {DragDropModule} from '@angular/cdk/drag-drop'; import {PortalModule} from '@angular/...