-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
37 lines (30 loc) · 933 Bytes
/
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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<form action="">
<input id="username" placeholder="username" type="text">
<input id="email" placeholder="email" type="text">
<input id="password" placeholder="password" type="text">
<input type="submit">
</form>
</body>
</html>
<script>
var form = document.querySelector("form");
form.addEventListener("submit",function(event){
event.preventDefault();
var data = {
username: form.username.value,
email: form.email.value,
password:form.password.value
}
localStorage.setItem("userData",JSON.stringify(data));
});
</script>