An example AT Protocol application, written in Elixir using atex and Drinkup.
9
fork

Configure Feed

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

at main 19 lines 449 B view raw
1<Layouts.app flash={@flash}> 2 <form 3 id="login-form" 4 action="/oauth/login" 5 method="get" 6 class="flex gap-2 border rounded px-4 py-2 outline-blue-500 focus-within:outline" 7 > 8 <input 9 type="text" 10 name="handle" 11 placeholder="Enter your handle (eg. alice.bsky.social)" 12 required 13 class="grow outline-none" 14 /> 15 <button type="submit" class="button"> 16 Log in 17 </button> 18 </form> 19</Layouts.app>