2022-05-21 02:23:55 -05:00
|
|
|
<script lang="ts">
|
2023-07-01 00:50:47 -04:00
|
|
|
import { goto } from '$app/navigation';
|
|
|
|
|
import { AppRoute } from '$lib/constants';
|
2024-02-13 17:07:37 -05:00
|
|
|
import { signUpAdmin } from '@immich/sdk';
|
|
|
|
|
import { handleError } from '../../utils/handle-error';
|
2023-07-01 00:50:47 -04:00
|
|
|
import Button from '../elements/buttons/button.svelte';
|
2023-02-10 23:01:35 +01:00
|
|
|
|
2024-02-13 17:07:37 -05:00
|
|
|
let errorMessage: string;
|
2023-07-01 00:50:47 -04:00
|
|
|
let password = '';
|
|
|
|
|
let confirmPassowrd = '';
|
|
|
|
|
let canRegister = false;
|
2022-06-27 15:13:07 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
$: {
|
|
|
|
|
if (password !== confirmPassowrd && confirmPassowrd.length > 0) {
|
2024-02-13 17:07:37 -05:00
|
|
|
errorMessage = 'Password does not match';
|
2023-07-01 00:50:47 -04:00
|
|
|
canRegister = false;
|
|
|
|
|
} else {
|
2024-02-13 17:07:37 -05:00
|
|
|
errorMessage = '';
|
2023-07-01 00:50:47 -04:00
|
|
|
canRegister = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-07-26 12:28:07 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
async function registerAdmin(event: SubmitEvent & { currentTarget: HTMLFormElement }) {
|
|
|
|
|
if (canRegister) {
|
2024-02-13 17:07:37 -05:00
|
|
|
errorMessage = '';
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
const form = new FormData(event.currentTarget);
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
const email = form.get('email');
|
|
|
|
|
const password = form.get('password');
|
2023-11-11 20:03:32 -05:00
|
|
|
const name = form.get('name');
|
2022-07-26 12:28:07 -05:00
|
|
|
|
2024-02-13 17:07:37 -05:00
|
|
|
try {
|
|
|
|
|
await signUpAdmin({
|
|
|
|
|
signUpDto: {
|
|
|
|
|
email: String(email),
|
|
|
|
|
password: String(password),
|
|
|
|
|
name: String(name),
|
|
|
|
|
},
|
|
|
|
|
});
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-08-27 07:31:52 +03:00
|
|
|
await goto(AppRoute.AUTH_LOGIN);
|
2024-02-13 17:07:37 -05:00
|
|
|
} catch (error) {
|
|
|
|
|
handleError(error, 'Unable to create admin account');
|
|
|
|
|
errorMessage = 'Error create admin account';
|
2023-07-01 00:50:47 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-21 02:23:55 -05:00
|
|
|
</script>
|
|
|
|
|
|
2023-07-18 13:19:39 -05:00
|
|
|
<form on:submit|preventDefault={registerAdmin} method="post" class="mt-5 flex flex-col gap-5">
|
2023-07-01 00:50:47 -04:00
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
|
<label class="immich-form-label" for="email">Admin Email</label>
|
|
|
|
|
<input class="immich-form-input" id="email" name="email" type="email" autocomplete="email" required />
|
|
|
|
|
</div>
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
|
<label class="immich-form-label" for="password">Admin Password</label>
|
|
|
|
|
<input
|
|
|
|
|
class="immich-form-input"
|
|
|
|
|
id="password"
|
|
|
|
|
name="password"
|
|
|
|
|
type="password"
|
|
|
|
|
autocomplete="new-password"
|
|
|
|
|
required
|
|
|
|
|
bind:value={password}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
|
<label class="immich-form-label" for="confirmPassword">Confirm Admin Password</label>
|
|
|
|
|
<input
|
|
|
|
|
class="immich-form-input"
|
|
|
|
|
id="confirmPassword"
|
|
|
|
|
name="password"
|
|
|
|
|
type="password"
|
|
|
|
|
autocomplete="new-password"
|
|
|
|
|
required
|
|
|
|
|
bind:value={confirmPassowrd}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
<div class="flex flex-col gap-2">
|
2023-11-11 20:03:32 -05:00
|
|
|
<label class="immich-form-label" for="name">Name</label>
|
|
|
|
|
<input class="immich-form-input" id="name" name="name" type="text" autocomplete="name" required />
|
2023-07-01 00:50:47 -04:00
|
|
|
</div>
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2024-02-13 17:07:37 -05:00
|
|
|
{#if errorMessage}
|
|
|
|
|
<p class="text-red-400">{errorMessage}</p>
|
2023-07-01 00:50:47 -04:00
|
|
|
{/if}
|
2022-05-21 02:23:55 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
<div class="my-5 flex w-full">
|
|
|
|
|
<Button type="submit" size="lg" fullwidth>Sign up</Button>
|
|
|
|
|
</div>
|
2023-03-15 22:38:29 +01:00
|
|
|
</form>
|