Bring the tighten-ui brand treatment into new-ui:
- Replace the emoji book (📚) in the sidebar header with the book-open
icon rendered in the theme accent color, matching the tighten-ui
header brand (templates/header.templ).
- Add web/static/favicon.svg (book-open glyph, tokyo-night accent
#7aa2f7 stroke) and reference it from the <head> of all 27 page
templates, so the favicon is present on login/setup/error pages too.
- Regenerate templ output for all affected templates.
65 lines
2.9 KiB
Templ
65 lines
2.9 KiB
Templ
package templates
|
|
|
|
templ Login(sessionExpired bool, deleted bool) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Login - Bookhoard</title>
|
|
<script src="/static/htmx.min.js"></script>
|
|
<script type="module" src="/static/main.js"></script>
|
|
<link href="/static/style.css" rel="stylesheet"/>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg"/>
|
|
</head>
|
|
<body class="theme-tokyo-night min-h-screen" x-data="login" x-init="initLoginTheme()">
|
|
<div class="brand-gradient min-h-screen flex flex-col items-center justify-center p-4 relative">
|
|
<select
|
|
id="theme-select"
|
|
@change="changeTheme()"
|
|
class="input absolute top-4 right-4 w-auto py-1.5 pr-8 text-sm cursor-pointer"
|
|
aria-label="Theme"
|
|
>
|
|
for _, opt := range ThemeOptions {
|
|
<option value={ opt.Name }>{ opt.Label }</option>
|
|
}
|
|
</select>
|
|
<div class="w-full max-w-sm">
|
|
<a href="/" class="flex items-center justify-center gap-2.5 mb-8">
|
|
<span class="text-3xl">📚</span>
|
|
<span class="text-2xl font-bold tracking-tight" style="color: var(--text-primary)">Bookhoard</span>
|
|
</a>
|
|
if sessionExpired {
|
|
<div class="mb-4 p-3 rounded-xl flex items-start gap-2" style="background-color: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid var(--accent);">
|
|
@Icon("info", "h-5 w-5 shrink-0")
|
|
<p class="text-sm" style="color: var(--text-primary)">Your session has expired. Please log in again to continue.</p>
|
|
</div>
|
|
}
|
|
if deleted {
|
|
<div class="mb-4 p-3 rounded-xl flex items-start gap-2" style="background-color: color-mix(in srgb, var(--status-success) 14%, transparent); border: 1px solid var(--status-success);">
|
|
@Icon("check-circle", "h-5 w-5 shrink-0")
|
|
<p class="text-sm" style="color: var(--text-primary)">Your account has been deleted successfully.</p>
|
|
</div>
|
|
}
|
|
<form hx-post="/api/auth/login" hx-target="#result" hx-swap="innerHTML" class="card p-6 space-y-4">
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Email or Username</label>
|
|
<input type="text" name="login" class="input" required/>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Password</label>
|
|
<input type="password" name="password" class="input" required/>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-full py-2.5">Sign In</button>
|
|
</form>
|
|
<div id="result" class="mt-4 text-center text-sm"></div>
|
|
<p class="text-center mt-6 text-sm" style="color: var(--text-secondary)">
|
|
Don't have an account?
|
|
<a href="/register" class="font-medium hover:underline" style="color: var(--accent)">Sign up</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
}
|