this repo has no description
1{{ define "title" }}login{{end}} {{define "content"}} 2<h1>login</h1> 3<form method="POST" action="/login"> 4 <label for="handle">handle</label> 5 <input type="text" id="handle" name="handle" required /> 6 7 <label for="app_password">app password</label> 8 <input type="password" id="app_password" name="app_password" required /> 9 10 <button type="submit">login</button> 11</form> 12{{end}}