summaryrefslogtreecommitdiff
path: root/templ/login.tpl
blob: a0c17d1ea9df89e240ae71d2c7774587c0b934f2 (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 m-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}}