-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
history.html
42 lines (42 loc) · 1.12 KB
/
history.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
<html>
<head>
<title>History</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div id="searchBar">
<h1>History<sup>2</sup></h1>
<input id="searchInput" type="text" name="search"
placeholder="Search History">
<input type="submit" id="searchSubmit" value="Submit">
<br>
<br>
<input type="submit" id="deleteSelected" value="Delete Selected">
<br>
<br>
<input type="submit" id="removeAll" value="Remove All">
<br>
<br>
<input type="submit" id="seeAll" value="See All">
</div>
<div id="historyDiv">
</div>
<template id="historyTemplate">
<div class="history">
<div class="imageDiv">
<a class="titleLink"></a>
</div>
<div class="urlDiv">
<p class="pageName"></p>
</div>
<div class="removeDiv">
<a>
<button class="removeButton">Delete</button>
<input type="checkbox" class="removeCheck"/>
</a>
</div>
</div>
</template>
<script src="logic.js"></script>
</body>
</html>