11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import LoginForm from '../components/auth/LoginForm.jsx';
|
|
---
|
|
|
|
<Layout title="Prijava" isAuthPage={true}>
|
|
<div class="flex min-h-[60vh] items-center justify-center py-10">
|
|
<LoginForm client:load />
|
|
</div>
|
|
</Layout>
|