diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-11-08 21:43:59 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-11-08 21:43:59 -0500 |
| commit | cae917ee04c1b421107108d809f545cbf414cfae (patch) | |
| tree | 0fe087c00b2caad7d316ee28fc9cf24eff7de836 /ui/lib/components/LogOut.svelte | |
| parent | f31b4d8188ac7e38b6c42380649691c0e8e1e097 (diff) | |
| parent | a417c62edd4d3c07ba37b01835e89ed650489e09 (diff) | |
Merge branch 'main' into wip/pwa
Diffstat (limited to 'ui/lib/components/LogOut.svelte')
| -rw-r--r-- | ui/lib/components/LogOut.svelte | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/lib/components/LogOut.svelte b/ui/lib/components/LogOut.svelte new file mode 100644 index 0000000..25dd5e9 --- /dev/null +++ b/ui/lib/components/LogOut.svelte @@ -0,0 +1,18 @@ +<script> + import { goto } from '$app/navigation'; + import { logOut } from '$lib/apiServer.js'; + import { currentUser } from '$lib/store'; + + async function onsubmit(event) { + event.preventDefault(); + const response = await logOut(); + if (200 <= response.status && response.status < 300) { + currentUser.update(() => null); + goto('/login'); + } + } +</script> + +<form {onsubmit}> + <button class="btn bg-orange-400" type="submit">log out</button> +</form> |
