mirror of
https://github.com/immich-app/immich.git
synced 2025-11-02 02:27:09 -05:00
12 lines
314 B
Svelte
12 lines
314 B
Svelte
<script lang="ts">
|
|
import AdminRegistrationForm from '$lib/components/forms/admin-registration-form.svelte';
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Admin Registration - Immich</title>
|
|
</svelte:head>
|
|
|
|
<section class="h-screen w-screen flex place-items-center place-content-center">
|
|
<AdminRegistrationForm />
|
|
</section>
|