-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup_page.html
39 lines (39 loc) · 1.57 KB
/
signup_page.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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIGN-UP</title>
<link rel="stylesheet" href="login_page.css">
</head>
<body>
<h1>Welcome to the official Eateries page of IIT KGP!</h1>
<div class="buttons">
<a href="file:///C:/Users/ashva/OneDrive/Desktop/IIT%20KGP%20NOTES/DEVSOC%20stuff/login_page.html?username=&password=" class="button">LOGIN FORM</a>
<a href="file:///C:/Users/ashva/OneDrive/Desktop/IIT%20KGP%20NOTES/DEVSOC%20stuff/signup_page.html" class="button">SIGNUP-FORM</a>
</div>
<div class="signup-form" id="signup-form">
<form>
<label><b>NAME</b></label><br><br>
<input type="text" placeholder="Enter First Name">
<input type="text" placeholder="Enter Second Name">
<br><br><br>
<label><b>USERNAME</b></label><br><br>
<input type="text" placeholder="Enter Username">
<br><br><br>
<div class="passwords">
<div class="password">
<label><b>PASSWORD</b></label><br><br>
<input type="password" placeholder="Enter Password">
</div>
<div class="password">
<br><br>
<input type="password" placeholder="Confirm Password">
</div>
</div>
<br><br><br>
<button class="done-button"><b>DONE</b></button>
</form>
</div>
</body>
</html>