-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.html
50 lines (45 loc) · 1.96 KB
/
manager.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
<html>
<head>
<link rel="stylesheet" href="terminal.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="manager.js"></script>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav" style="margin-bottom: 20px;">
<header class="terminal-logo">
<div class="logo terminal-prompt"><a href="#" class="">Mundi Cookie Cleaner </a></div>
</header>
<nav class="terminal-menu">
<ul>
<li><a href="story.html"
class="menu-item" ><span>BTS</span></a>
</li>
<li><a href="https://github.com/burlienterprises/mundi-cookie-cleaner"
class="menu-item" target="_blank" rel="noopener"><span>Source</span></a>
</li>
</ul>
</nav>
</div>
<p>'Mundi' manages and cleans cookies for you.<br>May he serve you well (or suffer the consequences).
</p>
<div id="filter_div" style="display: flex;">
<input id="filter" type="text" style="flex:1" placeholder="Filter ...">
<button class="btn btn-default btn-ghost">x</button>
</div>
<br />
<div id="summary_div">
Showing <span id="filter_count"></span> of <span id="total_count"></span> cookie domains.
<button id="remove_button" style="float: right" class="btn btn-primary">DELETE ALL!</button>
</div>
<br /><br />
<div class="terminal-alert terminal-alert-primary no-display success-text" id="success-msg" >Successfully cleaned up!</div>
<table id="cookies">
<tr class="header">
<th style="text-align: left;">Name</th>
<th>#Cookies</th>
<th> </th>
</tr>
</div>
</body>
</html>