- Passwordless email OTP authentication - Event-based expense tracking with HTMX UI - AI receipt extraction via DeepSeek Vision API - CSV/PDF report generation with email filing - PWA with service worker and manifest - Mobile-first responsive design - SQLite database with auto-migration
95 lines
4.2 KiB
HTML
95 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="theme-color" content="#10b981">
|
|
<title>Dashboard - ExpenseFlow</title>
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
</head>
|
|
<body>
|
|
<div class="app-shell">
|
|
<header class="app-header">
|
|
<h1 class="app-title">ExpenseFlow</h1>
|
|
<a href="/" class="btn btn-secondary btn-sm"
|
|
hx-post="/logout" hx-target="body" hx-push-url="true"
|
|
hx-confirm="Are you sure you want to logout?">Logout</a>
|
|
</header>
|
|
|
|
<main class="main-content">
|
|
<div class="dashboard-header">
|
|
<h2>My Events</h2>
|
|
<button class="btn btn-primary"
|
|
onclick="document.getElementById('create-event-form').classList.toggle('hidden')">
|
|
+ New Event
|
|
</button>
|
|
</div>
|
|
|
|
<div id="create-event-form" class="hidden" style="margin-bottom: 1.5rem;">
|
|
<div class="card" style="padding: 1rem;">
|
|
<form hx-post="/events" hx-target="body" hx-push-url="true">
|
|
<div class="form-group">
|
|
<label for="name">Event Name</label>
|
|
<input type="text" id="name" name="name" placeholder="e.g., WebSummit 2026" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-block">Create Event</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="event-list">
|
|
{{if .Events}}
|
|
<div class="event-grid">
|
|
{{range .Events}}
|
|
<div class="card event-card">
|
|
<div class="event-card-header">
|
|
<h3 class="event-card-name">{{.Name}}</h3>
|
|
<span id="status-badge-{{.ID}}" class="badge badge-{{.Status}}">{{.Status}}</span>
|
|
</div>
|
|
<div class="event-card-meta">
|
|
<span>Created: {{.CreatedAt}}</span>
|
|
</div>
|
|
<div class="event-card-actions">
|
|
{{if eq .Status "open"}}
|
|
<a href="/events/{{.ID}}/expenses" class="btn btn-primary btn-sm"
|
|
hx-get="/events/{{.ID}}/expenses" hx-target="body" hx-push-url="true">
|
|
Add Expenses
|
|
</a>
|
|
{{else}}
|
|
<button class="btn btn-secondary btn-sm"
|
|
hx-put="/events/{{.ID}}/reopen"
|
|
hx-target="#status-badge-{{.ID}}"
|
|
hx-swap="outerHTML">
|
|
Reopen
|
|
</button>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{else}}
|
|
<div class="empty-state">
|
|
<svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="#94a3b8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/>
|
|
<polyline points="14 2 14 8 20 8"/>
|
|
<line x1="12" y1="18" x2="12" y2="12"/>
|
|
<line x1="9" y1="15" x2="15" y2="15"/>
|
|
</svg>
|
|
<h3>No Events Yet</h3>
|
|
<p>Create your first event to start tracking expenses.</p>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
// Toggle hidden class
|
|
document.querySelector('button[onclick]')?.addEventListener('click', function() {
|
|
// handled inline
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|