Angular Starter
Technology stack
- Angular 18 using latest APIs
- Tailwind CSS
Custom Sign up flow
To enable custom sign up flow for Angular client project, you need to:
- Find
/src/app/auth/auth.routes.tsfile inClient.Angularproject - Find the following code:
{ path: 'signup', component: SignUpPageComponent },{ path: 'signup-external', component: SignUpPageComponent },and replace it with:
{ path: 'signup', component: SignUpExtendedPageComponent },{ path: 'signup-external', component: SignUpExternalExtendedPageComponent },There should be already a commented out example of custom sign up flow in /src/app/auth/auth.routes.ts file.