-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport-found.html
More file actions
94 lines (83 loc) · 4.13 KB
/
Copy pathreport-found.html
File metadata and controls
94 lines (83 loc) · 4.13 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Report Found Item - Chandigarh University</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="navbar-container">
<a href="index.html" class="navbar-logo">Chandigarh University</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="report-lost.html" class="nav-link btn-nav-lost">Report Lost</a>
<a href="report-found.html" class="nav-link btn-nav-found">Report Found</a>
</div>
</div>
</nav>
<div class="content-pusher"></div>
<main class="container">
<section class="form-section">
<h2>Report a Found Item</h2>
<form id="found-form">
<div class="form-group">
<label for="found-item-name">Item Name</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="text" id="found-item-name" name="itemName" placeholder="e.g., Set of Keys" required>
</div>
<div class="form-group">
<label for="found-category">Category</label>
<!-- NAME ATTRIBUTE ADDED -->
<select id="found-category" name="category" required>
<option value="">-- Select a Category --</option>
<option value="electronics">Electronics</option>
<option value="books">Books/Notes</option>
<option value="id-card">ID Card / Wallet</option>
<option value="apparel">Apparel (Jacket, etc.)</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="found-location">Location Found</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="text" id="found-location" name="location" placeholder="e.g., Food Court, Table 5" required>
</div>
<div class="form-group">
<label for="found-date">Date Found</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="date" id="found-date" name="date" required>
</div>
<div class="form-group">
<label for="found-image">Upload Image</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="file" id="found-image" name="image" accept="image/*">
</div>
<div class="form-group">
<label for="found-description">Detailed Description</label>
<!-- NAME ATTRIBUTE ADDED -->
<textarea id="found-description" name="description" rows="3" placeholder="e.g., Three keys on a red keychain."></textarea>
</div>
<hr>
<div class="form-group">
<label for="found-contact-name">Your Name</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="text" id="found-contact-name" name="contactName" required>
</div>
<div class="form-group">
<!-- Typo bhi fix kar diya hai (</button> hata diya) -->
<label for="found-contact-email">Your Contact Email</label>
<!-- NAME ATTRIBUTE ADDED -->
<input type="email" id="found-contact-email" name="contactEmail" required>
</div>
<button type="submit" class="btn btn-found">Submit Found Item Report</button>
</form>
</section>
</main>
<script src="report.js"></script>
</body>
</html>