diff options
| author | Kit La Touche <kit@transneptune.net> | 2025-01-05 15:03:45 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2025-01-05 15:03:45 -0500 |
| commit | 9101d7bbc839e4cf54b1c12a1b9412e85d9f955a (patch) | |
| tree | 962dc8d3ccfa649ef70c4a06b71c7f2cc1f5e08c /ui/lib/components | |
| parent | 16ec9ef2e1e53b5cc2a3fd86c123e39371d00c2b (diff) | |
A bit more styling
Diffstat (limited to 'ui/lib/components')
| -rw-r--r-- | ui/lib/components/ChangePassword.svelte | 2 | ||||
| -rw-r--r-- | ui/lib/components/Invites.svelte | 2 | ||||
| -rw-r--r-- | ui/lib/components/LogIn.svelte | 2 | ||||
| -rw-r--r-- | ui/lib/components/LogOut.svelte | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ui/lib/components/ChangePassword.svelte b/ui/lib/components/ChangePassword.svelte index 109a83a..51ebccd 100644 --- a/ui/lib/components/ChangePassword.svelte +++ b/ui/lib/components/ChangePassword.svelte @@ -22,7 +22,7 @@ } </script> -<form {onsubmit} bind:this={form}> +<form class="form" {onsubmit} bind:this={form}> <label >current password <input diff --git a/ui/lib/components/Invites.svelte b/ui/lib/components/Invites.svelte index 7861448..27d3754 100644 --- a/ui/lib/components/Invites.svelte +++ b/ui/lib/components/Invites.svelte @@ -13,7 +13,7 @@ } </script> -<form {onsubmit}> +<form class="form" {onsubmit}> <button type="submit">create invitation</button> </form> diff --git a/ui/lib/components/LogIn.svelte b/ui/lib/components/LogIn.svelte index 7e0f7cd..44aab44 100644 --- a/ui/lib/components/LogIn.svelte +++ b/ui/lib/components/LogIn.svelte @@ -9,7 +9,7 @@ </script> <div> - <form {onsubmit}> + <form class="form" {onsubmit}> <label for="username"> username <input diff --git a/ui/lib/components/LogOut.svelte b/ui/lib/components/LogOut.svelte index 8b182e7..b699cfd 100644 --- a/ui/lib/components/LogOut.svelte +++ b/ui/lib/components/LogOut.svelte @@ -13,6 +13,6 @@ } </script> -<form {onsubmit}> +<form class="form" {onsubmit}> <button type="submit">log out</button> </form> |
