-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
88 lines (82 loc) · 2.09 KB
/
login.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" type="text/css" href="style_AppShelf1.css">
<link rel="icon" href="images/appshelf_icon.png">
<style type="text/css">
#showcase{
background-image:url('images/about_us.jpg');
background-size: 100%;
}
body{
background-image: url('images/about_us_background.jpg');
}
</style>
</head>
<body>
<header id="main-header">
<div class="container">
<h1>
<span id="outer">
Web<span id="inner">Shelf</span>
</span>
</h1>
</div>
</header>
<nav id="navbar">
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about_us.html">About Us</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
</nav>
<div class="container">
<h3>This page is still under construction...</h3>
<h1>:(</h1>
<br>
<h1>Register</h1>
<form action="register.php" method="post">
<table>
<tr>
<td>Name</td>
<td><input type="name" name="name" placeholder="enter the name" required></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" name="email" placeholder="enter the email" required></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password" placeholder="enter the password" required></td>
</tr>
<tr>
<td><input type="submit" value="submit"></td>
</tr>
</table>
</form>
<h1>Login</h1>
<form>
<table>
<tr>
<td>Email</td>
<td><input type="email" name="email" placeholder="enter the email" required></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password" placeholder="enter the password" required></td>
</tr>
<tr>
<td><input type="submit" value="submit"></td>
</tr>
</table>
</form>
</div>
<footer id="main-footer">
<p>Copyright © || Made with ❤ in India</p>
</footer>
</body>
</html>