-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate.html
153 lines (153 loc) · 4.43 KB
/
create.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>safehonu.com/create -- safer meetups</title>
<link href="css/common.css" rel="stylesheet" type="text/css">
</head>
<body>
<div>
<img src="img/safehonu.png" alt="safehonu.com -- safer meetups"/>
<div>
<strong>safehonu.com -- safer meetups</strong>
<p/>
<div id="location">
Location:<br/>
<span>
<input id="location" style="width: 250px" type="text"></input>
<input id="map" type="button" value=" Map it! "></input>
</span>
</div>
<div id="map"></div>
<div>
Date: <span class="sm"><em>YYYY-MM-dd</em></span><br/>
<span>
<select id="year">
<option>2010</option>
<option>2011</option>
<option>2012</option>
</select>
<select id="month">
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>
<select id="day">
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
<option>22</option>
<option>23</option>
<option>24</option>
<option>25</option>
<option>26</option>
<option>27</option>
<option>28</option>
<option>29</option>
<option>30</option>
<option>31</option>
</select>
</span>
<p/>
Time: <span class="sm"><em>HH:mm AM/PM</em></span><br/>
<span>
<select id="hour">
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>
<select id="min">
<option>00</option>
<option>15</option>
<option>30</option>
<option>45</option>
</select>
<select id="ampm">
<option>PM</option>
<option>AM</option>
</select>
</span>
</div>
<div>
Emergency Contact: <span class="sm"><em>Phone <em>(U.S.)</em> or Email</em></span><br/>
<input id="notify" type="text"></input>
</div>
<div>
Your Email: <span class="sm"><em>For confirmation and check-in</em></span><br/>
<input id="email" type="email"></input>
</div>
<div>
Your Name: <span class="sm"><em>For notifying emergency contact</em></span><br/>
<input id="name" type="text"></input>
</div>
<div id="create">
<input id="create" type="button" value=" Create "></input>
<span id="loading">
<img src="img/busy.gif" alt="busy..."></img>
</span>
</div>
<div id="modal"></div>
<div>
<p/>
<span class="sm">(check-in)</span><br/>
<span>
<a href="http://m.safehonu.com">m.safehonu.com</a>
</span>
<p/>
<span class="sm">(contact)</span><br/>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/jquery-1.4.2.js" type="text/javascript"></script>
<script src="js/create.js" type="text/javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-860432-4']);
_gaq.push(['_setDomainName', '.safehonu.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>