-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.15 KB
/
Copy pathindex.html
File metadata and controls
38 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<center>
<h1>Signup Form</h1>
</center>
<center>
<label for="username">Username</label>
<input id="username" name="username" type="text" required>
<label for="email">Email</label>
<input id="email" name="email" type="email" required>
<label for="pass">Password</label>
<input id="pass" name="pass" type="password" required>
<label for="pass1">Confirm Password</label>
<input id="pass1" name="pass1" type="password" required>
</center>
<div style="margin-top: 15px;">
<center>
<button class="batMan" type="submit" onclick="window.location.href='indexv2.html'">Signup</button>
<button class="superMan" type="button" onclick="window.location.href='thank.html'">Login</button>
</center>
</div>
</section>
</body>
</html>