this repo has no description
1{{ define "user/login" }}
2 <!doctype html>
3 <html lang="en">
4 <head>
5 <meta charset="UTF-8" />
6 <meta
7 name="viewport"
8 content="width=device-width, initial-scale=1.0"
9 />
10 <script src="/static/htmx.min.js"></script>
11 <link rel="stylesheet" href="/static/tw.css" type="text/css" />
12 <title>login</title>
13 </head>
14 <body>
15 <main class="content">
16 <h1>login</h1>
17 <form method="POST" action="/login">
18 <label for="handle">handle</label>
19 <input type="text" id="handle" name="handle" required />
20
21 <label for="app_password">app password</label>
22 <input
23 type="password"
24 id="app_password"
25 name="app_password"
26 required
27 />
28
29 <button class="btn my-2" type="submit">login</button>
30 </form>
31 </main>
32 </body>
33 </html>
34{{ end }}