Initial commit: Custom Start Page application with authentication and DynamoDB storage

This commit is contained in:
2026-02-18 22:06:43 -05:00
commit 7175ff14ba
47 changed files with 7592 additions and 0 deletions

16
static/js/main.js Normal file
View File

@@ -0,0 +1,16 @@
// Custom JavaScript for Custom Start Page
// Initialize on page load
document.addEventListener('DOMContentLoaded', function() {
console.log('Custom Start Page loaded');
});
// Handle HTMX events
document.body.addEventListener('htmx:afterSwap', function(evt) {
console.log('HTMX swap completed:', evt.detail.target.id);
});
document.body.addEventListener('htmx:responseError', function(evt) {
console.error('HTMX error:', evt.detail);
alert('An error occurred. Please try again.');
});