forked from an-cs-chan/Campus-Chemistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 3.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Campus Chemistry</title>
<link rel="stylesheet" type="text/css" href="styles/Styles.css" />
<script type="text/javascript" language="JavaScript" src="scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" language="JavaScript" src="scripts/homePage.js"></script>
</head>
<body>
<div class="homePanel">
<form id="loginForm">
<div class="loginPanel">
<span style="font-size: 21px;">
User Name:
</span>
<span>
<input id="loginEmail" name="loginEmail" class="loginTextEntry" type="text" required>
</span>
<span style="font-size: 21px;">
Password:
</span>
<span>
<input id="loginPassword" name="loginPassword" class="loginTextEntry" type="password" required>
</span>
<span>
<input type="submit" id="loginButton" class="button" value="Log In" />
</span>
</div>
</form>
<div class="mainContent" align="center">
<h1 style="font-size: 40px;">
Campus Chemistry
</h1>
<img alt="logo" src="images/Logo.png">
<h2>
"Let us find your perfect mate."
</h2>
<div id="registerRegion" class="secondaryContent" align="center">
<div class="contentHeader">
Register Now -
<span class="joinNowText"> Free to Join! </span>
</div>
<form id="registerForm">
<div class="registerText">
<div class="textLayout">
E-mail:
<input id="emailInput" name="emailInput" class="registerTextEntry formValidator" type="email" required />
</div>
<div class="textLayout">
Password:
<input id="passwordInput" name="passwordInput" class="registerTextEntry formValidator" type="password" required />
</div>
<div class="textLayout">
Confirm:
<input id="pwConfirmInput" name="pwConfirmInput" class="registerTextEntry formValidator" type="password" required />
</div>
<div id="warningArea" style="display:none;">
</div>
<div align="center" style="padding:10px;">
<input type="submit" id="signUpButton" class="button" value="Sign Up" />
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</HTML>