-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<title>UW Map</title>
<link href="./css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class='content_container'>
<div class='left_sidepanel'>
<ul class='filter_list'>
<li class='filter'>
MathSoc
</li>
<li class='filter'>
CS Club
</li>
<li class='filter'>
Career Center
</li>
</ul>
<div class='create_event'>Create Event</div>
</div>
<div id='map_canvas'></div>
</div>
<div class='event_form_bubble'>
<div class='marker_bg bg_info'></div>
<form class='event_form'>
<label for='event_name'>Event Name</label>
<div class='name_icon'>
<div class='name'>
<input type='text' name='event_name' id='event_name' value=''>
</div>
<div class='icon'>
<div class='event_type icon_info' id='choose_event_icon'></div>
</div>
</div>
<label for='event_desc'>Event Description</label>
<textarea name='event_desc' id='event_desc'></textarea>
<label for='event_tag'>Event Tags</label>
<input type='text' name='event_tag' id='event_tag' value=''>
<div class='buttons'>
<input class='cancel' type='submit' value='Cancel'>
<input class='submit' type='submit' value='Publish'>
</div>
</form>
</div>
<div class='event_icon_selection'>
<div class='event_type type_select icon_info' id='info'><span>Info Session</span></div>
<div class='event_type type_select icon_game' id='game'><span>Entertainment</span></div>
<div class='event_type type_select icon_social' id='social'><span>Social</span></div>
<div class='event_type type_select icon_food' id='food'><span>Refreshment</span></div>
<div class='event_type type_select icon_workshop' id='workshop'><span>Workshop</span></div>
</div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script type="text/javascript" src="./js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="./js/underscore-min.js"></script>
<script type="text/javascript" src="./js/backbone-min.js"></script>
<script type="text/javascript" src="./js/map.js"></script>
</body>
</html>