fjla-home/src/routes/change/+page.svelte
2025-01-24 16:01:59 +00:00

21 lines
523 B
Svelte

<script lang="ts">
import { onMount } from "svelte";
import { signOut } from "@auth/sveltekit/client";
const changePwLink: string = "https://sso.fjla.uk/realms/FJLA.net/account/account-security/signing-in"
onMount(async() => {
await signOut();
window.location.href = changePwLink;
})
</script>
<p>Redirecting, please wait...</p>
<p>If the page does not reload <a href={changePwLink}>click here</a>.</p>
<style>
p {
text-align: center;
margin: auto;
}
</style>