Files
bitvid/views/history.html
2025-10-01 13:42:50 -04:00

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>