forked from tangled.org/core
Monorepo for Tangled

appview: login page improvements

anirudh.fi 410f1611 508dc503

verified
Changed files
+21 -2
appview
pages
templates
user
+21 -2
appview/pages/templates/user/login.html
··· 16 16 <h1 class="text-center text-2xl font-semibold italic"> 17 17 tangled 18 18 </h1> 19 + <h2 class="text-center text-xl italic"> 20 + tightly-knit social coding. 21 + </h2> 19 22 <form 20 - class="w-full" 23 + class="w-full mt-4" 21 24 hx-post="/login" 22 25 hx-swap="none" 23 26 hx-disabled-elt="this" ··· 25 28 <div class="flex flex-col"> 26 29 <label for="handle">handle</label> 27 30 <input type="text" id="handle" name="handle" required /> 31 + <span class="text-xs text-gray-500 mt-1"> 32 + You need to use your 33 + <a href="https://bsky.app">Bluesky</a> handle to log 34 + in. 35 + </span> 28 36 </div> 29 37 30 38 <div class="flex flex-col mt-2"> ··· 35 43 name="app_password" 36 44 required 37 45 /> 46 + <span class="text-xs text-gray-500 mt-1"> 47 + Generate an app password 48 + <a 49 + href="https://bsky.app/settings/app-passwords" 50 + target="_blank" 51 + >here</a 52 + >. 53 + </span> 38 54 </div> 39 55 40 56 <button ··· 46 62 </button> 47 63 </form> 48 64 <p class="text-sm text-gray-500"> 49 - Join our IRC channel: <a href="https://web.libera.chat/#tangled"><code>#tangled</code> on Libera Chat</a>. 65 + Join our IRC channel: 66 + <a href="https://web.libera.chat/#tangled" 67 + ><code>#tangled</code> on Libera Chat</a 68 + >. 50 69 </p> 51 70 <p id="login-msg" class="error w-full"></p> 52 71 </main>