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 </div> 24 <button type="submit">Login</button> 25 </form> 26 </main> 27 </body> 28</html> 29{{ end }}