59 lines
2.1 KiB
HTML
59 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Trip Planner</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="app-container">
|
|
<header class="header">
|
|
<h1>Trip Planner</h1>
|
|
</header>
|
|
|
|
<div class="search-container">
|
|
<form id="search-form" class="search-form">
|
|
<div class="form-group">
|
|
<label for="from-city">From</label>
|
|
<input type="text" id="from-city" name="from" placeholder="Enter departure city" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="to-city">To</label>
|
|
<input type="text" id="to-city" name="to" placeholder="Enter destination city" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="travel-date">Date</label>
|
|
<input type="date" id="travel-date" name="date" required>
|
|
</div>
|
|
<button type="submit" id="search-btn" class="search-btn">Search Routes</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="content-container">
|
|
<div class="routes-panel">
|
|
<h2>Found Routes</h2>
|
|
<div id="routes-list" class="routes-list">
|
|
<p class="empty-message">Search for routes to see results here</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="map-panel">
|
|
<div id="map" class="map"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="loading-overlay" class="loading-overlay hidden">
|
|
<div class="loading-spinner"></div>
|
|
<p>Searching for routes...</p>
|
|
</div>
|
|
|
|
<div id="error-message" class="error-message hidden"></div>
|
|
</div>
|
|
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|