JavaScript- Simple Registration Form Using AngularJS
Submitted by razormist on Friday, June 21, 2019 - 17:01.
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.
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!!
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.- <!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="container-fluid">
- <br />
- <br />
- <table class="table table-bordered">
- <thead class="alert-info">
- <tr>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="user in users">
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="modal fade" id="form_modal" aria-hidden="true">
- <div class="modal-dialog">
- <div class="modal-content">
- <form>
- <div class="modal-header">
- </div>
- <div class="modal-body">
- <div class="col-md-8">
- <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>
- </div>
- </div>
- <br style="clear:both;"/>
- <div class="modal-footer">
- </div>
- </form>
- </div>
- </div>
- </div>
- </body>
- </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.- 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
- 1311 views