-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
58 lines (51 loc) · 1.74 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
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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width ,initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="popup_styles.css">
<title>Geotab</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Short+Stack&display=swap');
body {
font-family: 'Short Stack', cursive;
}
#btn-get-location{
margin-left: 85px;
}
#btn-add-tabs{
margin-left: 5px;
}
</style>
</head>
<body class="doodle">
<!-- <h1 style="margin:0 auto;">Welcome to Geotab</h1> -->
<img src="img/geotab title.png" alt="Title" width = "400" style="border: none;"/>
<div id="menu">
<button id="btn-get-location">Get Location</button>
<button id="btn-add-tabs">Add Tabs</button>
</div>
<div id="clearfloat"></div>
<h4>Current Location: <span id="location">Press "Get Location"...</span></h4>
<div id="naming-location" style=display:none>
<button id="nameLocation">Name Location</button>
</div>
<div id="save-name" style="display:none">
<input type="text" id="nameInput" placeholder="Enter Name">
<button id="saveName">Save Name</button>
</div>
<div id="search-field" style=display:none>
<input type="text" id="urlInput" placeholder="Enter URL">
<button id="saveButton">Save URL</button>
<button id="doneSaving">Close</button>
</div>
<div id="open" style=display:none>
<button id="openTabsButton"></button>
</div>
<h2>Saved Locations</h2>
<button id="viewSavedTabsButton">View Saved Locations</button>
<div id="savedTabsContainer" style="width:400px;"></div>
<button id="btn-close">Close</button>
<script src="popup_script.js"></script>
</body>
</html>