-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.75 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="img/favicon.ico">
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAKWOpqbKhNBEbfH1Zks6kXaSuu3ak042o&sensor=true">
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!--<script src="js/facebookLogin.js"></script>-->
<link rel="stylesheet" type="text/css" href="css/caerus.css" />
<title>Welcome to Reunitem</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
</head>
<body>
<header id="top-bar">
<img src="img/logowhite.png">
<div id="enterPrompt">Press enter to submit your item</div>
<div id="buttonsMobile">
<input type="button" id="placeRedPinButton" onclick="lightboxAndContent('markerLightbox','#e74c3c')" value="I've lost something"/>
<input type="button" id="placeBluePinButton" onclick="lightboxAndContent('markerLightbox','#2980b9')" value="I've found something"/>
</div>
<div id="rightNav">
<section id="set-6">
<div id="rightNavButtons" class="hi-icon-wrap hi-icon-effect-6">
<a href="#" class="hi-icon icon-question" id="about">About</a>
<a href="#" class="hi-icon icon-film" id="video">Video</a>
</div>
</section>
<input type="button" class="buttonLogon" value="login" onclick="drawLightbox('loginLightbox')">
</div>
</header>
<div id="main">
<select id="cd-dropdown" name="cd-dropdown" class="cd-select">
<option value="-1" selected>Filter</option>
<option value="1">Clothing</option>
<option value="2">Computers</option>
<option value="3">Keys</option>
<option value="4">Mobile Devices</option>
<option value="5">Wallets and Purses</option>
<option value="6">Other</option>
</select>
<div id="map-canvas"></div>
</div>
<!--Scripts start here-->
<script type="text/javascript" src="js/initialise.js"></script>
<script type="text/javascript" src="js/jquery.dropdown.js"></script>
<script type="text/javascript">
$( function() {
$( '#cd-dropdown' ).dropdown( {
gutter : 5
} );
});
</script>
<script src="js/modernizr.custom.63321.js"></script>
<script src="js/addPins.js"></script>
<script src="js/databaseSubmissions.js"></script>
<script src="js/lightboxes.js"></script>
</body>
</html>