An open source supporter broker powered by high-fives. high-five.atprotofans.com/
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 597 B view raw
1{{template "base" .}} 2 3{{define "title"}}Login - High Five{{end}} 4 5{{define "content"}} 6<article> 7 <header> 8 <h2>Login</h2> 9 </header> 10 11 <form method="POST" action="/login"> 12 <input type="hidden" name="csrf_token" value="{{.CSRFToken}}"> 13 <label for="handle"> 14 Handle 15 <input type="text" id="handle" name="handle" placeholder="you.bsky.social" required> 16 </label> 17 <button type="submit">Login</button> 18 </form> 19 20 <footer> 21 <small>You'll be redirected to your PDS to authorize.</small> 22 </footer> 23</article> 24{{end}}