Files
website/templates/layout.html
2025-03-25 22:28:41 +00:00

34 lines
984 B
HTML

{{ define "layout" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SynLotto</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
table { border-collapse: collapse; width: 100%; margin-top: 20px; }
th, td { padding: 8px 12px; border: 1px solid #ddd; text-align: center; }
th { background-color: #f5f5f5; }
.form-section { margin-bottom: 20px; }
.topbar { margin-bottom: 20px; }
.flash { padding: 10px; color: green; background: #e9ffe9; border: 1px solid #c3e6c3; margin-bottom: 15px; }
</style>
</head>
<body>
<div class="topbar">
{{ if .User }}
<p>Hello, {{ .User.Username }} | <a href="/logout">Logout</a></p>
{{ else }}
<p><a href="/login">Login</a></p>
{{ end }}
</div>
{{ if .Flash }}
<div class="flash">{{ .Flash }}</div>
{{ end }}
{{ template "content" . }}
</body>
</html>
{{ end }}