aboutsummaryrefslogtreecommitdiff
path: root/ui/pages/user/login.tmpl.html
blob: 5c42f975062a69c84b132cb11693bff7700d3f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "title"}}Login{{end}}

{{define "main"}}
    <h1>Login</h1>
    <form hx-post="/user" action="/user/auth" method="POST" hx-target="#messages" hx-swap="outerHTML">
        <label>
            Username
            <input type="text" placeholder="username" name="username" />
        </label>
        <label>
            Password
            <input type="password" placeholder="password" name="password" />
        </label>
        <button type="submit" hx-disabled-elt="this">Login</button>
    </form>
{{end}}