-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
29 lines (29 loc) · 1.43 KB
/
report.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Report Item</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">Report Lost Item</h1>
<form action="/report" method="POST" class="w-50 mx-auto mt-4">
<div class="mb-3">
<label for="itemName" class="form-label">Item Name</label>
<input type="text" id="itemName" name="itemName" class="form-control" placeholder="Enter item name" required>
</div>
<div class="mb-3">
<label for="itemDescription" class="form-label">Item Description</label>
<textarea id="itemDescription" name="itemDescription" class="form-control" placeholder="Describe the item" required></textarea>
</div>
<div class="mb-3">
<label for="locationFound" class="form-label">Location Found</label>
<input type="text" id="locationFound" name="locationFound" class="form-control" placeholder="Where was the item found?" required>
</div>
<button type="submit" class="btn btn-primary w-100">Submit Report</button>
</form>
</div>
</body>
</html>