-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
62 lines (61 loc) · 2.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>S3 Directory Listing</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
}
</style>
<link id="dark-mode-style" rel="stylesheet" href="dark-mode.css">
</head>
<body>
<div class="container">
<h1 class="my-4">S3 Directory Listing</h1>
<div class="custom-control custom-switch my-3">
<input type="checkbox" class="custom-control-input" id="darkModeSwitch">
<label class="custom-control-label" for="darkModeSwitch">Dark Mode</label>
</div>
<nav id="breadcrumb" class="breadcrumb">
</nav>
<input class="form-control mb-3" id="search" type="text" placeholder="Search...">
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Last Modified</th>
<th>Size</th>
</tr>
</thead>
<tbody id="object-list">
</tbody>
</table>
<div id="loading" class="text-center">
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div id="error" class="alert alert-danger d-none" role="alert">
</div>
<div class="mt-4 d-flex justify-content-between">
<button id="prevPage" class="btn btn-primary" disabled>Previous</button>
<span id="pageInfo">Page 1</span>
<button id="nextPage" class="btn btn-primary">Next</button>
</div>
<div class="row mt-5">
<div class="col">
<p class="text-muted text-center">
© 2023 S3 Directory Listing - <a href="https://github.com/flightlesstux/S3-Directory-Listing" target="_blank">https://github.com/flightlesstux/S3-Directory-Listing</a>
</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="s3.js"></script>
</body>
</html>