-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·65 lines (60 loc) · 2.84 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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title>SocialGEO</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" href="_css/normalize.css" rel="stylesheet" media="all">
<link type="text/css" href="_css/main.css" rel="stylesheet" media="all">
<script src="_scripts/jquery-1.7.1.min.js" type="text/javascript" ></script>
<script src="_scripts/modernizr-2.0.6.js" type="text/javascript" ></script>
<script src="_scripts/jquery.masonry.min.js" type="text/javascript" ></script>
</head>
<body>
<div id="bg_map_canvas"></div>
<div id="bodyContainer">
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a><div class="content"><p>This is a small about panel</p></div></li>
<li><a href="#">Team</a><div class="content"><p>This is a first introduction to the development team</p></div></li>
</ul>
</nav>
<nav id="loginNav">
<ul>
<li>
<a href="#">Login</a>
<div class="content" id="loginForm">
<form>
<input type="email" placeholder="email">
<input type="password" placeholder="Password">
<input type="submit" value="Login">
</form>
</div>
</li>
</ul>
</nav>
</header>
<div class="centered" id="container">
<h1 id="title"><span>SocialGEO</span></h1>
<div id="bigLogo"> </div>
<form >
<fieldset>
<legend>quickstart</legend>
<input id="QSlocationButton" type="submit" value="Use your current location">
<label id="QSlocationLabel" for="locationInput">or enter a location to start...</label>
<input id="QSlocationInput" type="text" placeholder="Location" name="">
<input id="QSSubmit" type="submit" value="Let's go!">
</fieldset>
<p><a href="register.php">Register</a> or <a href="login.php">login</a> to get all the functionalities.</p>
</form>
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true"></script>
<script src="_scripts/main.js" type="text/javascript" ></script>
</body>
</html>