-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>Geo Tweets</title>
<!-- JQuery from Google CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<!-- Fill -->
<script type="application/javascript" src="script.js"></script>
<!-- Mad stylish stuff in here -->
<link rel="stylesheet" href="./styles.css"/>
</head>
<body>
<header>
<h2>Hello Tweeters</h2>
</header>
<!-- This is all very disgusting, will fix in future (damn it Houli) -->
<br><br>
<form method="post" action="getData.php">
(Lat, Long)
<br>
<!-- input validation coming soon(TM) -->
<input type="text" id="lat" name="lat" size="10" required/>
, <input type="text" id="long" name="long" size="10" required/>
<br><br>
Radius:
<br>
<input type="text" id="radius" name="radius" size="4" required/>
<select name="unit">
<option value="km">Km</option>
<option value="mi">Mi</option>
</select>
<br><br>
<input type="submit"/>
</form>
<br><br>
Presets:
<br>
<select id="location_presets" onchange="fillFormData(this)">
<option value="tcd">Trinity</option>
<option value="dublin">Dublin</option>
<option value="london">London</option>
<option value="paris">Paris</option>
<option value="nyc">NYC</option>
<option value="sf">San Francisco</option>
</select>
<!-- end disgusting code -->
<!-- I'm a sellout -->
<footer class="main_footer">
<p>By <a href="http://patrickoboyle.com">Patrick O'Boyle</a></p>
</footer>
</body>
</html>