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
30 class="bg-blue-500 text-white font-bold py-2 px-4 rounded"
31 type="submit"
32 >
33 login
34 </button>
35 </form>
36 </main>
37 </body>
38 </html>
39{{ end }}