add from v002

This commit is contained in:
2026-05-20 21:24:00 +02:00
parent 1a6ba86d0b
commit 83fb8c69bb
98 changed files with 10878 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
// src/pages/login.astro
import Layout from "../layouts/Layout.astro";
import LoginForm from "../components/LoginForm.astro";
import WelcomeHeader from "../components/WelcomeHeader.astro";
---
<Layout title="Prijava u sustav">
<div class="flex items-center justify-center bg-gray-50 dark:bg-gray-950 px-4">
<!-- WELCOME HEADER -->
<WelcomeHeader />
<!-- LOGIN FORM -->
<LoginForm />
</div>
</Layout>