AngularJS CDN https://angularjs.org/ https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js
registraion.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | //registraion.html <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <title>AngularJS User Registraion Form</title> <meta name= "viewport" content= "width=device-width, initial-scale=1" > <link rel= "stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" > </head> <body> <div ng-app = "registrationform" class = "container" > <div style= "text-align:center;color:blue" > <h3><b>AngularJS User Registraion Form</b></h3> </div> <div ng-controller = "FormController" > <div align= "right" > <a href= "#" ng-click= "searchUser()" >{{title}}</a> </div> <form role = "form" class = "well" ng-hide= "ifSearchUser" > <div class = "form-group" > <label for = "name" > Name: </label> <input type = "text" id = "name" class = "form-control" placeholder = "Enter Name " ng-model = "newcontact.name" > </div> <div class = "form-group" > <label for = "email" > Email: </label> <input type = "email" id = "email" class = "form-control" placeholder = "Enter Email " ng-model = "newcontact.email" > </div> <div class = "form-group" > <label for = "password" > Password: </label> <input type = "password" id = "password" class = "form-control" placeholder = "Enter Password " ng-model = "newcontact.password" > </div> <div class = "form-group" > <label for = "phone" > Phone: </label> <input type = "text" id = "phone" class = "form-control" placeholder = "Enter Phone " ng-model = "newcontact.phone" > </div> <br> <input type= "hidden" ng-model= "newcontact.id" > <input type= "button" class = "btn btn-primary" ng-click= "saveContact()" class = "btn btn-primary" value = "Submit" > </form> <div><h4><b>Registered Users</b></h4> <table ng- if = "contacts.length" class = "table table-striped table-bordered table-hover" > <thead> <tr class = "info" > <th>Name</th> <th>Email</th> <th>Phone</th> <th ng- if = "!ifSearchUser" >Action</th> </tr> </thead> <tbody> <tr ng-repeat = "contact in contacts" > <td>{{ contact.name }}</td> <td>{{ contact.email }}</td> <td>{{ contact.phone }}</td> <td ng- if = "!ifSearchUser" > <a href= "#" ng-click= "edit(contact.id)" role = "button" class = "btn btn-info" >edit</a> <a href= "#" ng-click= "delete(contact.id)" role = "button" class = "btn btn-danger" > delete </a> </td> </tr> </tbody> </table> <div ng-hide= "contacts.length > 0" >No Users Found</div> </div> </div> </div> <script> var myApp = angular.module( "registrationform" , []); myApp.service( "ContactService" , function (){ var uid = 1; var contacts = [{ 'id' : 0, 'name' : 'Cairocoders Ednalan' , 'email' : 'cairocoders@gmail.com' , 'password' : '123456' , 'phone' : '123456789' }, { 'id' : 2, 'name' : 'clydey Ednalan' , 'email' : 'clyde@gmail.com' , 'password' : '123456' , 'phone' : '123456789' }]; this.save = function (contact) { if (contact.id == null) { contact.id = uid++; contacts.push(contact); } else { for ( var i in contacts) { if (contacts[i].id == contact.id) { contacts[i] = contact; } } } }; this.get = function (id) { for ( var i in contacts ) { if ( contacts[i].id == id) { return contacts[i]; } } }; //Delete a contact this. delete = function (id) { for ( var i in contacts) { if (contacts[i].id == id) { contacts.splice(i,1); } } }; //Show all contacts this.list = function () { return contacts; } ; }); myApp.controller( "FormController" , function ( $scope , ContactService){ console.clear(); $scope .ifSearchUser = false; $scope .title = "List of Users" ; $scope .contacts = ContactService.list(); $scope .saveContact = function () { console.log( $scope .newcontact); if ( $scope .newcontact == null || $scope .newcontact == angular.undefined) return ; ContactService.save( $scope .newcontact); $scope .newcontact = {}; }; $scope . delete = function (id) { ContactService. delete (id); if ( $scope .newcontact != angular.undefined && $scope .newcontact.id == id) { $scope .newcontact = {}; } }; $scope .edit = function (id) { $scope .newcontact = angular. copy (ContactService.get(id)); }; $scope .searchUser = function (){ if ( $scope .title == "List of Users" ){ $scope .ifSearchUser=true; $scope .title = "Back" ; } else { $scope .ifSearchUser = false; $scope .title = "List of Users" ; } }; }); </script> </body> </html> |