-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.html
More file actions
44 lines (42 loc) · 1.01 KB
/
Copy pathaccount.html
File metadata and controls
44 lines (42 loc) · 1.01 KB
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Login Form</title>
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<script>
function validateForm(){
localStorage.setItem("uname",document.forms["loginform"]["mailid"].value);
localStorage.setItem("pwd",document.forms["loginform"]["password"].value);
}
</script>
</head>
<body>
<div id="wrap">
<div id="header">
<h1><a href="#">Register Account Here....</a></h1>
</div>
<div id="top"> </div>
<form name="loginform" action="success.html" onsubmit="return validateForm()">
<br>
Key in your email id:
<input type=text name=mailid>
<br>
Key in your First Name:
<input type=text name=fname>
<br>
Key in your Last Name:
<input type=text name=fname>
<br>
Password:
<input type=password name=password>
<br>
Confirm Password:
<input type=password name=password>
<br>
<input type=submit value=submit>
</form>
</div>
</body>
</html>