-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
47 lines (47 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<title>Save Tab as Session</title>
<link rel="stylesheet" href="./assets/css/popup.css">
</head>
<body>
<nav class="nav-menu">
<i class="burger" id="toggleMenu"></i>
<div class="title">Save Tab as Session</div>
<i class="plus" id="addSession"></i>
</nav>
<section class="menu">
<div id="menu">
<div class="settings">
<div class="row disabled">
<div class="settings_title">Close Window on Save</div>
<label class="switch">
<input class="settings_checkbox" type="checkbox" disabled>
<span class="slider round"></span>
</label>
</div>
</div>
<div class="footer">
<div class="socials">
<a href="https://github.com/HatGuy68/SaveTabAsSession/" target="_blank"><i class="footer-icon contributing"></i></a>
<a href="https://github.com/HatGuy68/" target="_blank"><i class="footer-icon account"></i></a>
<a href="https://chrome.google.com/webstore/detail/save-tab-as-session/jpmjnbifmaaalmbgfpimbajbapmpjmlj" target="_blank"><i class="footer-icon webstore"></i></a>
</div>
<div class="footer-message">
Made with <img alt="love" class="heart"> by HatGuy68
</div>
</div>
</div>
</section>
<section class="session_list">
<ul id="session_list">
<li class="session"><div class="session_title" id="title-${sessionName}">${sessionName}</div><i class="session_delete" id="delete-${sessionName}"></i></li>
</ul>
</section>
<div class="message" id="message">
<img src="./assets/images/Arrow.png" class="arrow"></img>
<div class="content" id="content" style="font-size: 20px; border: dashed; padding: 10px; border-radius: 5%;">Save a new Session</div>
</div>
<script src="./assets/js/popup.js"></script>
</body>
</html>