-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
29 lines (29 loc) · 1.8 KB
/
signup.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
<!-- signup register
-->
<html>
<head>
<script src="https://code.angularjs.org/1.5.5/angular.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class = "login" ng-app = "signup" ng-controller = "signupCtrl">
<img src = "https://media.glassdoor.com/sql/15518/marlabs-squarelogo-1435754175206.png"><br>
<label>Username</label> <br>
<input class = "inputcls" type="text" name = "username" placeholder = "username" id = "UserName" ng-model = "uname" ng-init="uname =''"><br><br>
<label>Password</label> <br>
<input class = "inputcls" type="password" name = "password" placeholder = "password" id = "Password" ng-model = "pword" ng-init="pword =''"><br><br>
<label>Firstname</label> <br>
<input class = "inputcls" type="text" name = "firstname" placeholder = "firstname" id = "Firstname" ng-model = "fname" ng-init="fname =''"><br><br>
<label>Lastname</label> <br>
<input class = "inputcls" type="text" name = "lastname" placeholder = "lastname" id = "Lastname" ng-model = "lname" ng-init="lname =''"><br><br>
<label>Email</label> <br>
<input class = "inputcls" type="email" name = "email" placeholder = "email" id = "Email" ng-model = "eml" ng-init="eml =''"><br><br>
<label>Phone</label> <br>
<input class = "inputcls" type="text" name = "phone" placeholder = "phone" id = "Phone" ng-model = "phn" ng-init="phn =''"><br><br>
<label>Location</label> <br>
<input class = "inputcls" type="text" name = "location" placeholder = "location" id = "Location" ng-model = "lct" ng-init="lct =''"><br><br>
<input type = "button" value= "Create account" name = "creataccount" class = "loninbtn" id = "CreatAccount" ng-click = "creataccnt()"><br>
</div>
</body >
</html>