2024-02-13 05:51:18 +04:00
|
|
|
---
|
2024-02-18 07:39:17 +04:00
|
|
|
// Import the necessary components from their respective component files
|
2024-02-14 05:47:32 +04:00
|
|
|
import LoginModal from "./ui/forms/LoginModal.astro";
|
|
|
|
|
import RegisterModal from "./ui/forms/RegisterModal.astro";
|
|
|
|
|
import RecoverModal from "./ui/forms/RecoverModal.astro";
|
2024-02-13 05:51:18 +04:00
|
|
|
import LoginBtn from "./ui/buttons/LoginBtn.astro";
|
|
|
|
|
---
|
|
|
|
|
|
2024-02-18 07:39:17 +04:00
|
|
|
<!-- Login Button -->
|
2024-02-13 05:51:18 +04:00
|
|
|
<LoginBtn />
|
2024-02-18 07:39:17 +04:00
|
|
|
<!-- Login Modal -->
|
2024-02-13 05:51:18 +04:00
|
|
|
<LoginModal />
|
2024-02-18 07:39:17 +04:00
|
|
|
<!-- Register Modal -->
|
2024-02-13 05:51:18 +04:00
|
|
|
<RegisterModal />
|
2024-02-18 07:39:17 +04:00
|
|
|
<!-- Password Recovery Modal -->
|
2024-02-13 05:51:18 +04:00
|
|
|
<RecoverModal />
|