-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (61 loc) · 2.76 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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="bullion management site, rare coins, gold, silver, platinum">
<meta name="author" content="CSE134B Dream Team">
<link rel="stylesheet" type="text/css" href="./style/style.css">
<meta name=viewport content="width=device-width, initial-scale=.8, minimum-scale = .8, user-scalable=yes">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="./js/parse-1.4.2.js"></script>
<script src="./js/jquery-1.11.2.min.js"></script>
<script src="./js/velocity.min.js"></script>
<script src="./js/backend.js"></script>
<script src="./js/render.js"></script>
<script src="./js/main.js"></script>
<script>
if (Parse.User.current()) {
window.location.href = './home.html';
}
</script>
<title>Login - ShinyStack</title>
</head>
<body>
<nav>
ShinyStack
</nav>
<div class="mobile-nav">
ShinyStack
</div>
<div id="w1-wrapper">
<section id="w1-left">
<h1>ShinyStack</h1>
<h3>Manage your bullion collection with a simple app.</h3>
<div id="sign-up-form">
<form name="sign-up-form" style="display:none;">
<input name="email" type="text" placeholder="email" style="width:99%; padding: 0 0 0 1%; margin-top: 30px; line-height:40px; height: 40px; font-size: large;">
<input name="password" type="password" placeholder="password" style="width:99%; padding: 0 0 0 1%; margin-top: 30px; line-height:40px; height: 40px; font-size: large;">
</form>
<span id="sign-up-button">Sign up</span>
</div>
<div id="log-in-form">
<form name="log-in-form" style="display:none;">
<input name="email" type="text" placeholder="email" style="width:99%; padding: 0 0 0 1%; margin-top: 30px; line-height:40px; height: 40px; font-size: large;">
<input name="password" type="password" placeholder="password" style="width:99%; padding: 0 0 0 1%; margin-top: 30px; line-height:40px; height: 40px; font-size: large;">
</form>
<span id="log-in-button">Log in</span>
</div>
</section>
<section id="w1-right">
<div id="iphone">
<div id="iphone-camera"></div>
<div id="iphone-speaker"></div>
<div id="iphone-screen"></div>
<div id="iphone-home"></div>
</div>
</section>
</div>
<script type="text/javascript">loadFooter();</script>
</body>
</html>