mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2026-03-16 00:14:11 +00:00
26 lines
971 B
HTML
26 lines
971 B
HTML
<!-- views/history.html -->
|
|
<section id="watchHistoryView" class="space-y-6">
|
|
<h2 class="text-xl mb-4 text-gray-700">Watch History</h2>
|
|
<div id="watchHistoryLoading">
|
|
<div id="watchHistoryStatus">
|
|
<div class="sidebar-loading-wrapper" role="status" aria-live="polite">
|
|
<div class="sidebar-loading-indicator">
|
|
<span
|
|
class="status-spinner status-spinner--inline"
|
|
aria-hidden="true"
|
|
></span>
|
|
<span class="sidebar-loading-text"
|
|
>Fetching watch history from relays…</span
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="watchHistoryGrid" class="watch-history-grid hidden"></div>
|
|
<p id="watchHistoryEmpty" class="hidden text-gray-400 text-center py-12">
|
|
Your watch history is empty. Watch some videos to populate this list.
|
|
</p>
|
|
<div id="watchHistorySentinel" class="h-1 w-full"></div>
|
|
<script type="module" src="js/historyView.js"></script>
|
|
</section>
|