Figure 1. Angular Signup Form Template
This blog represents code samples and related concepts which can be used to create a Signup form in Angular (Angular 2/Angular 4).In order to create signup form, following code is required to be written:
This is how the screenshot of the Signup form looks like:
Figure 1. Angular Signup Form Template
Following are different files which may need to be created to manage signup module:
Save the code given below in a file namely, signup.ts
export class Signup { constructor ( public email: string, public name: string, public password: string, public country: string, ) { } }
Save the following in a file, namely, signup.coomponent.html
<div style="margin-top: 20px"> <h2>New User? Signup</h2> <hr/> </div> <div style="margin-top: 30pt"> <form (ngSubmit)="onSubmit()" #signupForm="ngForm"> <div class="form-group"> <label for="emailField"><strong>Email address</strong></label> <input type="email" class="form-control" id="emailField" [(ngModel)]="signup.email" required placeholder="name@example.com" name="uEmail" #email="ngModel"/> </div> <div [hidden]="email.valid || email.pristine" class="alert alert-danger">Email address is required</div> <div class="form-group"> <label for="password"><strong>Password</strong></label> <input type="password" class="form-control" id="password" [(ngModel)]="signup.password" name="password" (blur)="confirmPassword()" required placeholder="Password" #pswd="ngModel"/> </div> <div [hidden]="pswd.valid || pswd.pristine" class="alert alert-danger">Password is required</div> <div class="form-group"> <label for="cnfpassword"><strong>Confirm Password</strong></label> <input type="password" class="form-control" id="cnfpassword" [(ngModel)]="passwordConfirmationTxt" (blur)="confirmPassword()" name="passwordConfirmationTxt"/> </div> <div [hidden]="!passwordConfirmationFailed" class="alert alert-danger">Password did not match</div> <div class="form-group"> <label for="fullname"><strong>Name</strong></label> <input class="form-control" id="fullname" [(ngModel)]="signup.name" placeholder="Full Name" required name="uName" #fullname="ngModel"/> </div> <div [hidden]="fullname.valid || fullname.pristine" class="alert alert-danger">Name is required</div> <div class="form-group"> <label for="country"><strong>Country</strong></label> <select class="form-control" id="country" required> <option *ngFor="let country of countries" [value]="country">{{country}}</option> </select> </div> <button type="submit" class="btn btn-success" [disabled]="!signupForm.form.valid">Submit</button> </form> </div>
Save the following code in a file such as signup.component.ts.
import { Component } from '@angular/core'; import {Signup} from './signup'; @Component({ selector: 'app-root', templateUrl: './signup.component.html', styleUrls: ['./signup.component.css'] }) export class SignupComponent { title = ''; passwordConfirmationFailed = false; passwordConfirmationTxt = ''; signup = new Signup('', '', '', ''); countries = ['india', 'canada', 'us']; confirmPassword() { if (this.signup.password === this.passwordConfirmationTxt) { this.passwordConfirmationFailed = false; } else { this.passwordConfirmationFailed = true; } } onSubmit() { console.log('Name: ' + this.signup.name + ', Email: ' + this.signup.email + ', Password: ' + this.signup.password ); } }
Save the code given below in file such as signup.component.css which can be found in the same folder. Note that the styles file is referenced in the component code with the property such as styleUrls. Refer the code given above.
.ng-valid[required], .ng-valid.required { border-left: 5px solid #42A948; /* green */} .ng-invalid:not(form) { border-left: 5px solid #a94442; /* red */}
Pay attention to some of the following in the code given below:
Save the code in a file namely, app.module.ts or signup.module.ts (if Signup is a separate feature module)
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { SignupComponent } from './signup.component'; import {FormsModule} from '@angular/forms'; @NgModule({ declarations: [ SignupComponent ], imports: [ BrowserModule, FormsModule ], providers: [], bootstrap: [SignupComponent] }) export class AppModule { }
Large language models (LLMs) have fundamentally transformed our digital landscape, powering everything from chatbots and…
As Large Language Models (LLMs) evolve into autonomous agents, understanding agentic workflow design patterns has…
In today's data-driven business landscape, organizations are constantly seeking ways to harness the power of…
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…