forked from rogeriopvl/latertabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (30 loc) · 1002 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Later tabs</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="panel">
<header>
<h1 class="title">Later tabs</h1>
<i id="close_button" class="icon-remove close" title="Close this panel"></i>
<div class="save-actions">
<input type="button" class="save_tab" id="save_current_tab_button" value="Save tab" />
<input type="button" class="save_all" id="save_all_tabs_button" value="Save all tabs" />
</div>
</header>
<!--
<section class="search">
<input type="search" placeholder="Search saved tabs" />
</section>
-->
<section id="tab_list" class="saved-links">
</section>
<footer>
<i class="icon-cog" id="settings_button" title="Settings"></i>
</footer>
<script type="text/javascript" src="/js/latertabs.js"></script>
</body>
</html>