An example AT Protocol application, written in Elixir using atex and Drinkup.
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>