aboutsummaryrefslogtreecommitdiff
path: root/ui/pages/user/login.tmpl.html
blob: e091322c9b19df4c4edb2d158e5978c0203eeffd (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 action="/u/auth" method="POST">
        <label>
            Username
            <input type="text" placeholder="username" name="username" />
        </label>
        <label>
            Secret
            <input type="password" placeholder="psspsspsspss" name="secret" />
        </label>
        <button type="submit">Login</button>
    </form>
{{end}}