-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
33 lines (32 loc) · 1.28 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Geocaching.com Friends Logs</title>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="square.css" rel="stylesheet">
<script src="jquery-1.11.1.min.js"></script>
<script src="icheck.min.js"></script>
<script src="init.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<h3 class="title">Geocaching.com Friends Logs</h3>
<form action="">
<input type="checkbox" id="own">Show my log</input><br>
<input type="checkbox" id="friends">Show my friends logs</input><br>
Friends logs limit
<select class="limit" id="limit">
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</form>
<div class="footer">
<a class="issues" href="https://github.com/rfsbraz/Geocaching.com-Friends-Logs" target="_blank">Report a problem</a>
<a class="rate" href="https://chrome.google.com/webstore/detail/geocachingcom-friends-log/bgildcbomgimjfoblhlhmaehaeieeaam" target="_blank">Rate it</a>
</div>
</body>
</html>