Skip to content

Commit 3e644f5

Browse files
move paginition down
1 parent 81cb342 commit 3e644f5

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

reader/index.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,23 @@
1818
<!-- Image Viewer Section -->
1919
<div class="container mt-2">
2020
<div class="d-flex justify-content-center">
21-
<div class="input-group" style="max-width: 500px;">
22-
<input type="text" id="cdn-url" class="form-control" placeholder="Enter CDN URL" aria-label="CDN">
23-
<button class="btn btn-dark" id="view-image-btn" type="button">Go</button>
24-
</div>
21+
<div class="input-group" style="max-width: 500px;">
22+
<input type="text" id="cdn-url" class="form-control" placeholder="Enter CDN URL" aria-label="CDN">
23+
<button class="btn btn-dark" id="view-image-btn" type="button">Go</button>
24+
</div>
25+
2526
</div>
2627
</div>
28+
29+
30+
31+
<!-- Image Display Section -->
32+
<div class="container mt-2 d-flex justify-content-center px-1">
33+
<img id="image-display" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==">
34+
</div>
2735

2836
<!-- Pagination Section -->
29-
<div class="container mt-2 ">
37+
<div class="container my-2 ">
3038
<div class="d-flex justify-content-center align-items-center">
3139

3240
<button class="btn btn-dark me-3" id="first-btn">
@@ -51,12 +59,6 @@
5159
</div>
5260
</div>
5361

54-
55-
<!-- Image Display Section -->
56-
<div class="container mt-2 d-flex justify-content-center px-1">
57-
<img id="image-display" src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=">
58-
</div>
59-
6062
<script>
6163
document.addEventListener('DOMContentLoaded', () => {
6264
const cdnUrlInput = document.getElementById('cdn-url');
@@ -138,7 +140,7 @@
138140
nextBtn.addEventListener('click', () => navigateToPage(currentPage + 1));
139141
lastBtn.addEventListener('click', () => navigateToPage(maxPage));
140142
});
141-
</script>
143+
</script>
142144

143145
<script>
144146
// Dynamically load the navbar

0 commit comments

Comments
 (0)