19 lines
629 B
TypeScript
19 lines
629 B
TypeScript
import { checkAuth, login } from '$api/authService';
|
|
import { authStore } from '$stores/authStore';
|
|
import type { Actions } from './$types';
|
|
import { redirect } from '@sveltejs/kit';
|
|
|
|
export const actions = {
|
|
login: async (event) => {
|
|
const formData = await event.request.formData();
|
|
const username = formData.get('username') as string;
|
|
const password = formData.get('password') as string;
|
|
if (!username || !password) {
|
|
authStore.set({ error: 'Invalid username or password' });
|
|
return;
|
|
}
|
|
const isAuth = await login(event, username, password);
|
|
if (isAuth) redirect(303, '/dashboard');
|
|
}
|
|
} satisfies Actions;
|