blob: 25dd5e9a02b7330f8a32deb43428e2210d9f0fa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
|