JavaScript- Simple Registration Form Using AngularJS

In this tutorial we will create a Simple Registration Form Using AngularJS. This code will store an array data when the user submit the necessary information. The code itself use a angular directives that create a registration form as a built-in array that able to store a temporary data without storing to the database server. This a user-friendly program feel free to modify and use it to your system. We will be using AngularJS as a comprehensive JavaScript framework that extend the browser capabilities. It handles the heavy lifting of DOM manipulation and AJAX request in a whole.

Getting Started:

First you have to download Bootstrap, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/. And, this is the link for the AngularJS https://angularjs.org/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into you text editor, then save it index.html.
  1. <!DOCTYPE html>
  2. <html lang="en" ng-app="myModule">
  3.         <head>
  4.                 <meta charset="UTF-8"  name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6.         </head>
  7. <body ng-controller="myController">
  8.         <nav class="navbar navbar-default">
  9.                 <div class="containet-fluid">
  10.                         <a class="navbar-brand" href="https://www.sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">JavaScript- Simple Registration Form Using AngularJS</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button class="btn btn-success" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add user</button>
  18.                 <div class="container-fluid">
  19.                         <br />
  20.                         <br />
  21.                         <table class="table table-bordered">
  22.                                 <thead class="alert-info">
  23.                                         <tr>
  24.                                                 <th>USER ID</th>
  25.                                                 <th>Firstname</th>
  26.                                                 <th>Lastname</th>
  27.                                                 <th>Username</th>
  28.                                                 <th>Password <span class="pull-right">Show<input type="checkbox" ng-model="password"/></span></th>
  29.                                         </tr>
  30.                                 </thead>
  31.                                 <tbody>
  32.                                         <tr ng-repeat="user in users">
  33.                                                 <td>{{$index+1}}</td>
  34.                                                 <td>{{user.firstname}}</td>
  35.                                                 <td>{{user.lastname}}</td>
  36.                                                 <td>{{user.username}}</td>
  37.                                                 <td><span ng-hide="password">****</span><span ng-show="password">{{user.password}}</span></td>
  38.                                         </tr>
  39.                                 </tbody>
  40.                         </table>
  41.                 </div>
  42.         </div> 
  43.         <div class="modal fade" id="form_modal" aria-hidden="true">
  44.                 <div class="modal-dialog">
  45.                         <div class="modal-content">
  46.                                 <form>
  47.                                         <div class="modal-header">
  48.                                                 <h3 class="modal-title">Add New User</h3>
  49.                                         </div>
  50.                                         <div class="modal-body">       
  51.                                                 <div class="col-md-2"></div>
  52.                                                 <div class="col-md-8">
  53.                                                         <div class="form-group">
  54.                                                                 <label>Firstname</label>
  55.                                                                 <input type="text" class="form-control" ng-model="newUsers.firstname"/>
  56.                                                         </div>
  57.                                                         <div class="form-group">
  58.                                                                 <label>Lastname</label>
  59.                                                                 <input type="text" class="form-control" ng-model="newUsers.lastname"/>
  60.                                                         </div>
  61.                                                         <div class="form-group">
  62.                                                                 <label>Username</label>
  63.                                                                 <input type="text" class="form-control" ng-model="newUsers.username"/>
  64.                                                         </div>
  65.                                                         <div class="form-group">
  66.                                                                 <label>Password</label>
  67.                                                                 <input type="password" class="form-control" ng-model="newUsers.password"/>
  68.                                                         </div>
  69.                                                 </div>
  70.                                         </div>
  71.                                         <br style="clear:both;"/>
  72.                                         <div class="modal-footer">
  73.                                                 <button class="btn btn-danger" data-dismiss="modal"><span class = "glyphicon glyphicon-remove"></span> Close</button>
  74.                                                 <button class="btn btn-primary" ng-click="addUser()" data-dismiss="modal"><span class = "glyphicon glyphicon-save"></span> Save</button>
  75.                                         </div>
  76.                                 </form>
  77.                         </div>
  78.                 </div>
  79.         </div>
  80. </body>
  81. <script src = "js/angular.js"></script>
  82. <script src = "js/script.js"></script>
  83. <script src  = "js/jquery-3.2.1.min.js"></script>      
  84. <script src  = "js/bootstrap.js"></script>     
  85. </html>

Creating the Main Function

This code contains the main function of the application. This code will submit the user data when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js.
  1. var app = angular.module("myModule", [])
  2.                                                            .controller("myController", function($scope){
  3.                        
  4.                                                                 $scope.newUsers = {};
  5.                                                                
  6.                                                                 $scope.users = [
  7.                                                                         {firstname: "John", lastname: "Smith", username: "john123", password: "12345"},
  8.                                                                         {firstname: "Claire", lastname: "Temple", username: "c123", password: "12345"}
  9.                                                                 ];
  10.                                                                
  11.                                                                 $scope.addUser = function(){
  12.                                                                         $scope.users.push($scope.newUsers);
  13.                                                                         $scope.newUsers = {};
  14.                                                                 };             
  15.                                                                
  16.                                                 });
There you have it we successfully created a Simple Registration Form using AngularJS. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!

Add new comment