a mini social media app for small communities

fix bio settings being thrown on one line and add some more themes

Changed files
+13 -6
doc
src
templates
components
+11 -6
doc/themes.md
··· 13 13 > note that these themes were **not** made specifically for beep, they just work 14 14 > well out-of-the-box with it! 15 15 16 - | name | source | css theme url | 17 - |-------------------|----------------------------------------|---------------------------------------------------------------| 18 - | sakura | <https://github.com/oxalorg/sakura> | https://cdn.jsdelivr.net/npm/sakura.css/css/sakura.css | 19 - | water.css (auto) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/water.min.css | 20 - | water.css (dark) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/dark.min.css | 21 - | water.css (light) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/light.min.css | 16 + > there are also *tons* of drop-in css themes out in the wild, so the list here 17 + > is not even close to comprehensive. these are just my personal picks that i 18 + > found to be comfy with beep! 19 + 20 + | name | source | css theme url | 21 + |-------------------------------|-----------------------------------------|-------------------------------------------------------------| 22 + | sakura | <https://github.com/oxalorg/sakura> | https://cdn.jsdelivr.net/npm/sakura.css/css/sakura.css | 23 + | water.css (auto) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/water.min.css | 24 + | water.css (dark) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/dark.min.css | 25 + | water.css (light) | <https://github.com/kognise/water.css> | https://cdn.jsdelivr.net/npm/water.css@2/out/light.min.css | 26 + | kacit | <https://github.com/Kimeiga/kacit> | https://cdn.rawgit.com/Kimeiga/kacit/b3f813ed/kacit.min.css | 22 27 23 28 > here is a big list of drop-in themes: 24 29 > <https://github.com/dohliam/dropin-minimal-css>
+2
src/templates/components/user/settings.html
··· 2 2 <h2>settings:</h2> 3 3 <form action="/api/user/set_bio" method="post"> 4 4 <label for="bio">bio:</label> 5 + <br> 5 6 <textarea 6 7 name="bio" 7 8 id="bio" ··· 25 26 value="@user.pronouns" 26 27 required 27 28 > 29 + <br> 28 30 <input type="submit" value="save"> 29 31 </form> 30 32 <form action="/api/user/set_nickname" method="post">