109 lines
2.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encore Discover Events</title>
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- HEADER -->
<header class="site-header">
<nav class="container d-flex justify-content-between align-items-center">
<h1 class="site-logo">Encore</h1>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Events</a>
</li>
</ul>
</nav>
</header>
<!-- MAIN CONTENT -->
<main class="container mt-4">
<!-- SEARCH / FILTER SECTION -->
<section class="search mb-4">
<h2>Find Events</h2>
<div class="search__controls">
<!-- City -->
<input
id="city-input"
type="text"
class="form-control"
placeholder="Enter city (e.g. Zurich)"
>
<!-- Date -->
<label>From</label>
<input id="date-from" type="date">
<label>To</label>
<input id="date-to" type="date">
<!-- Category -->
<select id="category-input" class="form-control">
<option value="">All categories</option>
<option value="music">Music</option>
<option value="sports">Sports</option>
<option value="arts & theatre">Arts & Theatre</option>
</select>
<!-- Button -->
<button
id="load-events"
class="btn btn-primary"
>
Search
</button>
</div>
</section>
<!-- EVENTS LIST -->
<section class="events">
<h2>Upcoming Events</h2>
<div id="event-list">
<p class="text-muted">Search for events to begin.</p>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="site-footer text-center mt-5 p-3">
<p>© 2026 Encore Event Discovery</p>
</footer>
<!-- JS -->
<script type="module" src="js/app.js"></script>
</body>
</html>