-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
38 lines (37 loc) · 1.05 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Register</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="center">
<h1>Signup</h1>
<form method="post">
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Email-id</label>
</div>
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Username</label>
</div>
<div class="txt_field">
<input type="password" required>
<span></span>
<label>Password</label>
</div>
<div class="txt_field">
<input type="password" required>
<span></span>
<label> Re-enter Password</label>
</div>
<input type="submit" value="Signup">
<button class="button"><a href="index.html" class="link">Visit Home Page</a></button>
</form>
</div>
</body>
</html>