summaryrefslogtreecommitdiff
path: root/templ/login.tpl
blob: 7a9a0497d785dfc5453079c13a17a7197659cf02 (plain)
1
2
3
4
5
6
7
8
9
10
{{define "body"}}
    <main class="d-flex align-items-center min-vh-100">
        <form action="/login" method="post" class="container mx-auto" style="max-width: 440px;">
            <img src="/static/euro-money.svg" width="96" height="96" class="mb-4"/>
            {{inputs_and_errors_for . .Errors}}
            {{.CsrfField}}
            <button class="btn btn-primary w-100" type="submit">Log In!</button>
        </form>
    </main>
{{end}}