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