Remove reset password functionality
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-02-23 17:23:45 +01:00
parent 1433784369
commit b53ce04a75
4 changed files with 3 additions and 111 deletions

View File

@@ -1,16 +0,0 @@
---
import {t} from "astro-i18n";
import BackgroundImage from "../components/BackgroundImage.astro";
import ResetPasswordComponent from "../components/ResetPasswordComponent.svelte";
import NavbarLayout from "../layouts/NavbarLayout.astro";
---
<NavbarLayout title={t("login.page")}>
<div class="h-screen w-screen fixed -z-10">
<BackgroundImage />
</div>
<div class="h-screen mx-auto p-8 rounded-b-md pt-40 sm:pt-28 md:pt-14 flex flex-col justify-center items-center
dark:text-white " style="width: min(100vw, 75em);">
<ResetPasswordComponent client:load/>
</div>
</NavbarLayout>