-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (43 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="style.css">
<title>Insert title here</title>
</head>
<body>
<!-- Developer: YC -->
<div id="content">
<span style="margin-left:22px;color:#CCCCCC;font-size:15px;"><a href=#login_form >→ Lost Password</a></span>
<span style="margin-left:22px;color:#CCCCCC;font-size:15px;"><a href=#join_form >→ Password</a></span>
</div>
<!-- Login popup -->
<a href="#x" class="overlay" id="login_form"></a>
<div class="popup">
<h2>Login<h2><hr>
<div>
<label for="login">User Name</label>
<input type="text" id="login" value="" /><br/>
<label for="login">Password</label>
<input type="text" id="login" value="" /><br/>
<input type="button" id="button" value="Submit" /> <input type="reset" id="button" value="Reset" />
</div>
<a class="close" href="#close"></a>
</div>
<!-- REg popup -->
<a href="#x" class="overlay" id="join_form"></a>
<div class="popup">
<h2>Register<h2><hr>
<div>
<label for="login">First Name</label>
<input type="text" id="fname" value="" /><br/>
<label for="login">Last Name</label>
<input type="text" id="Lname" value="" /><br/>
<label for="login">Email</label>
<input type="text" id="Email" value="" /><br/>
<input type="button" id="button" value="Register" /> <input type="reset" id="button" value="Reset" />
</div>
<a class="close" href="#close"></a>
</div>
</body>
</html>