mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-12 21:08:46 +00:00
62 lines
1.7 KiB
Svelte
62 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from "svelte";
|
|
import { goto } from "$app/navigation";
|
|
import { Button, TextButton } from "$lib/components/buttons";
|
|
import { TitleDiv, BottomDiv } from "$lib/components/divs";
|
|
import { TextInput } from "$lib/components/inputs";
|
|
import { refreshToken } from "$lib/hooks/callAPI";
|
|
import { keyPairStore } from "$lib/stores";
|
|
import { requestLogin } from "./service";
|
|
|
|
let { data } = $props();
|
|
|
|
let email = $state("");
|
|
let password = $state("");
|
|
|
|
const login = async () => {
|
|
// TODO: Validation
|
|
|
|
if (await requestLogin(email, password, $keyPairStore)) {
|
|
await goto(
|
|
$keyPairStore
|
|
? data.redirectPath
|
|
: "/key/generate?redirect=" + encodeURIComponent(data.redirectPath),
|
|
);
|
|
} else {
|
|
// TODO: Alert
|
|
}
|
|
};
|
|
|
|
onMount(async () => {
|
|
const res = await refreshToken();
|
|
if (res.ok) {
|
|
await goto(data.redirectPath);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>로그인</title>
|
|
</svelte:head>
|
|
|
|
<div class="flex h-full flex-col justify-between">
|
|
<TitleDiv>
|
|
<div class="flex flex-col gap-y-2">
|
|
<h1 class="text-3xl font-bold">환영합니다!</h1>
|
|
<p>서비스를 이용하려면 로그인을 해야해요.</p>
|
|
</div>
|
|
<div class="my-4 flex flex-col gap-y-2">
|
|
<TextInput bind:value={email} placeholder="이메일" />
|
|
<TextInput bind:value={password} placeholder="비밀번호" type="password" />
|
|
</div>
|
|
</TitleDiv>
|
|
<BottomDiv>
|
|
<div class="w-full">
|
|
<Button onclick={login}>로그인</Button>
|
|
</div>
|
|
<div class="w-fit">
|
|
<TextButton>계정이 없어요</TextButton>
|
|
</div>
|
|
</BottomDiv>
|
|
</div>
|