blob: 742d4f1359b3387f770472d1216c91ce76d700f9 (
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
|
<script>
let { changePassword = async (currentPassword, newPassword) => {} } = $props();
let currentPassword = $state('');
let newPassword = $state('');
let confirmPassword = $state('');
let pending = $state(false);
let valid = $derived(newPassword === confirmPassword && newPassword !== currentPassword);
let disabled = $derived(pending || !valid);
async function onsubmit(event) {
event.preventDefault();
pending = true;
try {
await changePassword(currentPassword, newPassword);
event.target.reset();
} finally {
pending = false;
}
}
</script>
<form class="form" {onsubmit}>
<label
>current password
<input
name="currentPassword"
type="password"
placeholder="password"
bind:value={currentPassword}
/>
</label>
<label
>new password
<input name="newPassword" type="password" placeholder="password" bind:value={newPassword} />
</label>
<label
>confirm new password
<input
name="confirmPassword"
type="password"
placeholder="password"
bind:value={confirmPassword}
/>
</label>
<button type="submit" {disabled}>change password</button>
</form>
|