Sign Up Form Using AngularJS
Submitted by razormist on Monday, July 6, 2020 - 09:25.
In this code we will try to do Sign Up Form using AngularJS. The code is basically a register form without database in use. This will make you store any information temporarily by storing through array objects. To learn more about this, just follow the steps below.
There you have it we successfully created a Sign Up Form using AngularJS. I hope that this very simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!
Getting started:
First you will need to download & install the AngularJS here's the link https://angularjs.org/. And this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.Creating the Main Interface
This code contains the interface of the application. This code will render application and display the form. To do that just kindly write these block of code inside the text editor and save this as index.html.- <!DOCTYPE html>
- <html lang="en" ng-app="myModule">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
- </head>
- <body ng-controller="myController">
- <nav class="navbar navbar-default">
- <div class="containet-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-4">
- <form>
- <div class="form-group">
- <input type="text" class="form-control" ng-model="newUsers.firstname"/>
- </div>
- <div class="form-group">
- <input type="text" class="form-control" ng-model="newUsers.lastname"/>
- </div>
- <div class="form-group">
- <input type="text" class="form-control" ng-model="newUsers.username"/>
- </div>
- <div class="form-group">
- <input type="password" class="form-control" ng-model="newUsers.password"/>
- </div>
- </form>
- </div>
- <div class="col-md-8">
- <table class="table table-bordered">
- <thead class="alert-info">
- <tr>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="user in users">
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
Creating the Main Function
This code contains the main function of the application. This code will store all the user information. To that just kindly copy and write these block of codes inside the text editor, then save it inside the js folder as script.js- var app = angular.module("myModule", [])
- .controller("myController", function($scope){
- $scope.newUsers = {};
- $scope.users = [
- {firstname: "John", lastname: "Smith", username: "john123", password: "12345"},
- {firstname: "Claire", lastname: "Temple", username: "c123", password: "12345"}
- ];
- $scope.addUser = function(){
- $scope.users.push($scope.newUsers);
- $scope.newUsers = {};
- };
- });
Add new comment
- 388 views