-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
21 lines (21 loc) · 896 Bytes
/
search.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Items</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container my-5">
<h1 class="text-center text-primary">Search for Lost Items</h1>
<form action="/search" method="POST" class="w-50 mx-auto mt-4">
<div class="mb-3">
<label for="query" class="form-label">Search Query</label>
<input type="text" id="query" name="query" class="form-control" placeholder="Enter item or description" required>
</div>
<button type="submit" class="btn btn-primary w-100">Search</button>
</form>
</div>
</body>
</html>