-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanage_history.html
48 lines (44 loc) · 1.33 KB
/
manage_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
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style_manage_history.css">
<script src="manage_history.js"></script>
</head>
<body>
<h1>Youtube History Caption Search</h1>
<div class="container">
<div class="grid-item filter-box">
<div class="filter-header">
<h2>Filters</h2>
<button class="hide-button">Hide</button>
</div>
<ul class="filter-list">
</ul>
</div>
<div class="grid-item search-results-container">
<div class="grid-item search-box">
<p id="search-for-moments">Search videos</p>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search in title">
<button class="search-button"><img src="magnifying-glass.png"></button>
</div>
</div>
<div class="grid-item dropdown-container">
<div class="dropdown">
<button class="dropbtn">Sort by</button>
<div class="dropdown-content">
<a href="#">Name</a>
<a href="#">Channel</a>
<a href="#">Date</a>
</div>
</div>
</div>
</div>
<div class="grid-item video-grid">
<ul>
<!-- Grid of videos that match the searched captions will be dynamically added here -->
</ul>
</div>
</div>
</body>
</html>