-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
59 lines (52 loc) · 2.07 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="DBMS.CSS">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;1,300&display=swap" rel="stylesheet">
</head>
<body>
<div class="nav">
<header>
<div class = "outer">
<div class="head">
<h1>Library Catalog</h1>
</div>
<div class="navbar">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Books</a></li>
<li><a href="#">Authors</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</nav>
</div>
</div>
</header>
</div>
<div class="login">
<table>
<tr>
<td class="right"><h3 class="label">Email ID</h3></td>
<td><input type="text" placeholder="Enter your email ID"></td>
</tr>
<tr>
<td class="right"><h3 class="label">Enter password</h3></td>
<td><input type="text" placeholder="Password"></td>
</tr>
<tr>
<td class="right"><h3 class="label">Confirm password</h3></td>
<td><input type="text" placeholder="Confirm password"></td>
</tr>
</table>
<div><button class="Submit">Sign Up</button></div>
</div>
</body>