blob: 8d24a611259c802a984d80e9b8886b1f3049993b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<script>
import { goto } from '$app/navigation';
import { changePassword, logOut } from '$lib/apiServer.js';
import { currentUser } from '$lib/store';
import Invites from '$lib/components/Invites.svelte';
let currentPassword = $state(''),
newPassword = $state(''),
confirmPassword = $state(''),
passwordForm;
let pending = $state(false);
let valid = $derived(newPassword === confirmPassword && newPassword !== currentPassword);
let disabled = $derived(pending || !valid);
async function onLogOut(event) {
event.preventDefault();
const response = await logOut();
if (200 <= response.status && response.status < 300) {
currentUser.update(() => null);
goto('/login');
}
}
async function onPasswordChange(event) {
event.preventDefault();
pending = true;
let response = await changePassword(currentPassword, newPassword);
switch (response.status) {
case 200:
passwordForm.reset();
break;
}
pending = false;
}
</script>
<form onsubmit={onLogOut}>
<button class="btn variant-filled" type="submit">log out</button>
</form>
<form onsubmit={onPasswordChange} bind:this={passwordForm}>
<label
>current password
<input
class="input"
name="currentPassword"
type="password"
placeholder="password"
bind:value={currentPassword}
/>
</label>
<label
>new password
<input
class="input"
name="newPassword"
type="password"
placeholder="password"
bind:value={newPassword}
/>
</label>
<label
>confirm new password
<input
class="input"
name="confirmPassword"
type="password"
placeholder="password"
bind:value={confirmPassword}
/>
</label>
<button class="btn variant-filled" type="submit" {disabled}> change password </button>
</form>
<Invites />
|