28 lines
No EOL
617 B
HTML
28 lines
No EOL
617 B
HTML
{{define "title"}}
|
|
Pollo // Dashboard
|
|
{{end}}
|
|
|
|
{{define "headercontent"}}
|
|
Pollo // Dashboard
|
|
{{end}}
|
|
|
|
{{define "head"}}
|
|
<link rel="stylesheet" href="/public/css/styles.css" />
|
|
{{end}}
|
|
|
|
{{define "main"}}
|
|
<div class="flex flex-col items-center justify-center gap-8">
|
|
<h1 class="flex flex-row flex-wrap text-center justify-center items-center gap-1 text-4xl font-bold">
|
|
Hi, {{.Email}}!
|
|
</h1>
|
|
|
|
<label htmlFor="new-room-modal" class="btn btn-primary">
|
|
New Room
|
|
</label>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{define "foot"}}
|
|
<script src="/public/js/htmx.base.js"></script>
|
|
<script src="/public/js/htmx.sse.js"></script>
|
|
{{end}} |