-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (76 loc) · 2.83 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!--
<html>
<body>
{% for greeting in greetings %}
{% if greeting.author %}
<b>{{ greeting.author }}</b> wrote:
{% else %}
An anonymous person wrote:
{% endif %}
<blockquote>{{ greeting.content|escape }}</blockquote>
{% endfor %}
<form action="/sign" method="post">
<div><textarea name="content" rows="3" cols="60"></textarea></div>
<div><input type="submit" value="Sign Guestbook"></div>
</form>
<a href="{{ url }}">{{ url_linktext }}</a>
</body>
</html>
-->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="/assets/stylesheets/main.css">
<script src="assets/js/jquery-1.8.3.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/data.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBXfUdof0YnE078ZwN8RvbqNr52d1DVsmc&sensor=true"></script>
<script language="JavaScript">
function ShowHide(divId) {
if(document.getElementById(divId).style.display == 'none') {
document.getElementById(divId).style.display='block';
} else {
document.getElementById(divId).style.display = 'none';
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
<form id="selection">
<!-- Franchise -->
<h2><a onclick ="javascript:ShowHide('franchiseCheckbox')" href="javascript:;" >Franchise</a></h2>
<div class="selection" id="franchiseCheckbox" style="DISPLAY: none" >
<input type="checkbox" name="franchise" value="Northeast">Northeast<br>
</div>
<div class="selection" id="dateRange">
<h2>Date range</h2>
</div>
<div>
<h2>Young People</h2>
<!-- Age -->
<h3><a onclick ="javascript:ShowHide('ageCheckbox')" href="javascript:;" >Age</a></h3>
<div class="selection" id="ageCheckbox" style="DISPLAY: none" >
<input type="checkbox" name="age" value="11to25">11 to 25<br>
</div>
<!-- Gender -->
<h3>Gender</h3>
<input class="selection" id="sex_both" type="radio" name="sex" value="both" checked>both<br>
<input class="selection" id="sex_male" type="radio" name="sex" value="male">Male<br>
<input class="selection" id="sex_female" type="radio" name="sex" value="female">Female
<script type="text/javascript">
</script>
<!-- Ethic -->
<h3><a onclick ="javascript:ShowHide('ethicCheckbox')" href="javascript:;" >Ethic</a></h3>
<div class="mid" id="ethicCheckbox" style="DISPLAY: none" >
ethic place holder
</div>
<!-- Disability -->
<h3><a onclick ="javascript:ShowHide('disabilityCheckbox')" href="javascript:;" >Disability</a></h3>
<div class="mid" id="disabilityCheckbox" style="DISPLAY: none" >
disability place holder
</div>
</form>
</body>
</html>