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 name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <script 8 src="https://unpkg.com/htmx.org@2.0.4" 9 integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+" 10 crossorigin="anonymous" 11 ></script> 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 type="password" id="app_password" name="app_password" required /> 23 24 <button type="submit">login</button> 25 </form> 26 </main> 27 </body> 28</html> 29 30{{ end }}