this repo has no description
1{{ define "login" }} 2<html> 3 {{ template "head" . }} 4 5 <body> 6 <main> 7 <form 8 class="form-login" 9 method="post" 10 action="http://localhost:3000/login" 11 > 12 <p> 13 You will be redirected to bsky.app (or your PDS) to complete 14 login. 15 </p> 16 <div> 17 <input 18 type="text" 19 id="handle" 20 name="handle" 21 placeholder="@username.bsky.social" 22 /> 23 <input 24 type="password" 25 id="app_password" 26 name="app_password" 27 placeholder="app password" 28 /> 29 </div> 30 <button type="submit">Login</button> 31 </form> 32 </main> 33 </body> 34</html> 35{{ end }}