mirror of https://github.com/kortix-ai/suna.git
63 lines
2.9 KiB
HTML
63 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Browse Spaces - Workspace</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<!-- Include navigation.html content here -->
|
|
</nav>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4 class="card-title">Filter Spaces</h4>
|
|
<div class="mb-3">
|
|
<label class="form-label">Location</label>
|
|
<input type="text" class="form-control" placeholder="Enter city or neighborhood">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Capacity</label>
|
|
<select class="form-select">
|
|
<option>1-5 people</option>
|
|
<option>6-10 people</option>
|
|
<option>11-20 people</option>
|
|
<option>21+ people</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Amenities</label>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" id="wifi">
|
|
<label class="form-check-label" for="wifi">WiFi</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" id="parking">
|
|
<label class="form-check-label" for="parking">Parking</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-8">
|
|
<div class="row">
|
|
<!-- Space cards will go here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |