Files
004.erp.generic/frontend/src/pages/login.astro
mariomitte 5d39e048ba
Some checks failed
ERP CI Pipeline / test (push) Has been cancelled
prvi kod za live uporabu
2026-07-09 21:21:17 +02:00

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>