67 lines
2.1 KiB
Svelte
67 lines
2.1 KiB
Svelte
<script>
|
|
import { link, replace } from "svelte-spa-router";
|
|
import ApiClient from "@/utils/ApiClient";
|
|
import CommonHelper from "@/utils/CommonHelper";
|
|
import { addSuccessToast } from "@/stores/toasts";
|
|
import FullPage from "@/components/base/FullPage.svelte";
|
|
import Field from "@/components/base/Field.svelte";
|
|
|
|
export let params;
|
|
|
|
let newPassword = "";
|
|
let newPasswordConfirm = "";
|
|
let isLoading = false;
|
|
|
|
$: email = CommonHelper.getJWTPayload(params?.token).email || "";
|
|
|
|
async function submit() {
|
|
if (isLoading) {
|
|
return;
|
|
}
|
|
|
|
isLoading = true;
|
|
|
|
try {
|
|
await ApiClient.admins.confirmPasswordReset(params?.token, newPassword, newPasswordConfirm);
|
|
addSuccessToast("Successfully set a new admin password.");
|
|
replace("/");
|
|
} catch (err) {
|
|
ApiClient.error(err);
|
|
}
|
|
|
|
isLoading = false;
|
|
}
|
|
</script>
|
|
|
|
<FullPage>
|
|
<form class="m-b-base" on:submit|preventDefault={submit}>
|
|
<div class="content txt-center m-b-sm">
|
|
<h4 class="m-b-xs">
|
|
Reset your admin password
|
|
{#if email}
|
|
for <strong class="txt-nowrap">{email}</strong>
|
|
{/if}
|
|
</h4>
|
|
</div>
|
|
|
|
<Field class="form-field required" name="password" let:uniqueId>
|
|
<label for={uniqueId}>New password</label>
|
|
<!-- svelte-ignore a11y-autofocus -->
|
|
<input type="password" id={uniqueId} required autofocus bind:value={newPassword} />
|
|
</Field>
|
|
|
|
<Field class="form-field required" name="passwordConfirm" let:uniqueId>
|
|
<label for={uniqueId}>New password confirm</label>
|
|
<input type="password" id={uniqueId} required bind:value={newPasswordConfirm} />
|
|
</Field>
|
|
|
|
<button type="submit" class="btn btn-lg btn-block" class:btn-loading={isLoading} disabled={isLoading}>
|
|
<span class="txt">Set new password</span>
|
|
</button>
|
|
</form>
|
|
|
|
<div class="content txt-center">
|
|
<a href="/login" class="link-hint" use:link>Back to login</a>
|
|
</div>
|
|
</FullPage>
|