Athenaeum/static/login.html

85 lines
3.5 KiB
HTML
Raw Normal View History

2025-05-23 15:25:48 +02:00
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Logowanie</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
2025-05-24 16:47:32 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" rel="stylesheet">
2025-05-23 15:25:48 +02:00
<link href="/css/styles.css" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/old-english-text-mt" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body class="dark-theme">
2025-05-26 19:24:45 +02:00
<nav class="navbar navbar-expand-lg navbar-dark bg-black">
<div class="container">
<!-- Lewa strona - wyszukiwanie -->
<form class="d-flex me-lg-3 flex-grow-1" id="searchForm">
<input class="form-control me-2 dark-input"
type="search"
placeholder="Szukaj książek..."
aria-label="Search"
id="searchInput">
</form>
2025-05-23 15:25:48 +02:00
2025-05-26 19:24:45 +02:00
<!-- Środek - logo -->
<a class="navbar-brand mx-lg-auto order-lg-1" href="/">DARK ATHENAEUM</a>
2025-05-24 16:47:32 +02:00
2025-05-26 19:24:45 +02:00
<!-- Prawa strona - przyciski -->
<div class="d-flex align-items-center order-lg-2">
<div class="auth-links">
<div class="anonymous-links">
<a class="nav-link" href="/login.html">Logowanie</a>
<a class="nav-link" href="/register.html">Rejestracja</a>
</div>
2025-05-24 16:47:32 +02:00
2025-05-26 19:24:45 +02:00
<div class="user-links">
<a class="nav-link" href="/profile.html">Profil</a>
<a class="nav-link" href="#" id="logoutLink">Wyloguj</a>
<a class="nav-link" href="/cart.html">
<i class="bi bi-basket"></i> Koszyk
</a>
</div>
2025-05-24 16:47:32 +02:00
</div>
</div>
</div>
2025-05-26 19:24:45 +02:00
</nav>
2025-05-23 15:25:48 +02:00
<div class="auth-container">
<h2 class="neon-title mb-4">LOGOWANIE</h2>
<form id="loginForm">
<div class="mb-3">
<input type="email" class="form-control dark-input"
placeholder="Email" required id="loginEmail">
</div>
<div class="mb-3">
<input type="password" class="form-control dark-input"
placeholder="Hasło" required id="loginPassword">
</div>
<button type="submit" class="btn btn-gothic w-100">ZALOGUJ SIĘ</button>
</form>
<div class="text-center mt-3">
2025-05-25 17:52:16 +02:00
Nie masz konta? <a href="/register.html" class="text-danger">Zarejestruj się</a>
2025-05-23 15:25:48 +02:00
</div>
</div>
2025-05-24 16:47:32 +02:00
<footer class="mt-5 py-3 bg-dark">
<div class="container">
<div class="row justify-content-center gap-3 gap-md-0">
<div class="col-auto">
<a href="https://sykorax.eu/" class="text-gold">O Nas</a>
</div>
<div class="col-auto">
<a href="https://sykorax.eu/" class="text-gold">Kontakt</a>
</div>
<div class="col-auto">
<a href="https://sykorax.eu/" class="text-gold">Współpraca</a>
</div>
</div>
</div>
</footer>
2025-05-23 15:25:48 +02:00
<script src="/js/main.js"></script>
</body>
</html>