summaryrefslogtreecommitdiff
path: root/ui/lib/components/ChangePassword.svelte
blob: 51ebccd2b0b5665e19ef61cfe593212566165696 (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
<script>
  import { changePassword } from '$lib/apiServer.js';

  let currentPassword = $state(''),
    newPassword = $state(''),
    confirmPassword = $state(''),
    pending = $state(false),
    form;
  let valid = $derived(newPassword === confirmPassword && newPassword !== currentPassword);
  let disabled = $derived(pending || !valid);

  async function onsubmit(event) {
    event.preventDefault();
    pending = true;
    let response = await changePassword(currentPassword, newPassword);
    switch (response.status) {
      case 200:
        form.reset();
        break;
    }
    pending = false;
  }
</script>

<form class="form" {onsubmit} bind:this={form}>
  <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>