frontend for xcvr appview

update copy, improve look of logout button and add it to profile page

+27 -1
+4 -1
src/routes/+page.svelte
··· 153 153 </p> 154 154 <p> 155 155 at this point in history (saturday july 26) probably most things work like 156 - 70% but expect it to be a bit unpredictable! 156 + 70% but expect it to be a bit unpredictable! this is certainly out of date 157 + and counterproductive but this contains a list of things i'm going <a 158 + href="/todo">todo.</a 159 + > 157 160 </p> 158 161 <p style="border-bottom: .25rem solid var(--fg)"> 159 162 don't be weird, don't be mean, you're on our computer screens<span
+7
src/routes/c/delete/+page.svelte
··· 5 5 </script> 6 6 7 7 <main> 8 + <p> 9 + this isn't a true atproto delete, but you can use this to tell the backend 10 + to close up your channel for now. in the future there will be many more 11 + options for you to have finer controls. likely deleting a channel record 12 + from your repository will delete it on the backend if it's coded correctly, 13 + but behavior in the channel at that moment may be unpredictable! 14 + </p> 8 15 <DeleteSpectrum channels={data.channels} /> 9 16 </main>
+7
src/routes/p/[handle]/+page.svelte
··· 233 233 {beep} 234 234 {/if} 235 235 </form> 236 + <form 237 + action="{import.meta.env.VITE_API_URL}/oauth/logout" 238 + method="POST" 239 + style:margin-top="2rem" 240 + > 241 + <input type="submit" value="log out" /> 242 + </form> 236 243 </aside> 237 244 {/if} 238 245
+9
src/routes/settings/+page.svelte
··· 7 7 <input type="submit" value="log out" /> 8 8 </form> 9 9 </main> 10 + 11 + <style> 12 + input { 13 + padding: 0; 14 + background: var(--fg); 15 + color: var(--bg); 16 + font-size: 2rem; 17 + } 18 + </style>