blob: 30da6f0250dad730738f50dce673ab00298299f5 (
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
|
<script>
import { changePassword } from '$lib/apiServer.js';
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 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={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 />
|