-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload.html
34 lines (34 loc) · 904 Bytes
/
load.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>SaveTabs: Load Session</title>
<link rel="stylesheet" href="page.css" />
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
background: white;
}
</style>
</head>
<body>
<div id="container">
<div id="header"><h1>SaveTabs: Load Session</h1></div>
<div id="tab-selection">
<div id="load-description">
<div>Select Which Session to Load:</div>
<div>
<input type="checkbox" id="new-window" /><em>open in new window</em>
</div>
</div>
<ul id="session-list" class="list"></ul>
<div id="delete-wrapper">
<button id="delete-all-button">Delete All</button>
</div>
</div>
</div>
<script type="module" src="load.js"></script>
</body>
</html>