-
Notifications
You must be signed in to change notification settings - Fork 3
/
Recommend.html
70 lines (70 loc) · 2.44 KB
/
Recommend.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Download Directory Manager</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/sidebars/">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<section class="content-left">
<div class="d-inline-flex flex-column p-3 text-white bg-dark">
<hr>
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a href="./index.html" class="nav-link text-white">
<img src="./assets/home-2-24.png" height="23px"/>
 Home
</a>
</li>
<li class="nav-item">
<a href="./SeeDownload.html" class="nav-link text-white">
<img src="./assets/folder-24.png" height="23px"/>
 See Download
</a>
</li>
<li>
<a href="./Sort.html" class="nav-link text-white">
<img src="./assets/sorting_icon.png" height="23px"/>
 Sort
</a>
</li>
<li>
<a href="./ManageNewFiles.html" class="nav-link text-white">
<img src="./assets/new-24.png" height="23px"/>
 Tag New Files
</a>
</li>
<li>
<a href="./Recommend.html" class="nav-link active">
<img src="./assets/thumb-up-24.png" height="23px"/>
 Recommend
</a>
</li>
</ul>
<hr>
</div>
</section>
<section class="content-right">
<div>
<div class="px-3 py-3 m-0 bg-white">
<h2 class="fw-bold text-decoration-underline">
Recommend : Deleting install/setup files
<button class = "d-inline btn btn-light" id = "getInstallerFilesBtn" >Refresh</button>
</h2>
</div>
<div>
<ul class="ml-1 list-group list-group-flush" id = "InstallerFiles"> </ul>
</div>
</div>
</section>
</body>
<script src="./Recommend.js">
window.popper = require("popper.js");
require("bootstrap");
</script>
</html>