-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforum.html
161 lines (140 loc) · 7.01 KB
/
forum.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title>Where Put I? - Forum</title>
<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=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/>
<link rel="stylesheet" href="style.css">
<script src="script.js" type="text/javascript"></script>
</head>
<body onload="resetAllForms();">
<!--Nav bar-->
<nav class="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="directory.html">Directory</a></li>
<li><a href="forum.html">Forum</a></li>
</ul>
</nav>
<!--Page Information-->
<h2>Lost and Found Forum</h2>
<p class="instructions">Look through the listings below to see what items people have found and what people are looking for.
To post about something you found, click <b>I Found Something</b>.
To post about something you lost, click <b>I Lost Something</b>.
To delete a post you made, click the X icon in the corner.
</p>
<!--Buttons for reporting items-->
<div id="reporting-buttons">
<button type="button" onclick="openForm('found-form');">I Found Something</button>
<button type="button" onclick="openForm('lost-form');">I Lost Something</button>
</div>
<div id="post-container">
<!--Found Items-->
<div class="forum" id="found-items">
<h1 id="found-header">Found Items</h1>
<div class="forum-item">
<div class="forum-image">
<img src="images/lenovocharger.webp">
</div>
<div class="forum-labels">
<label><b>Item</b>: Lenovo 65W Barrel-jack Charger</label><br>
<label><b>Location</b>: HL 116 in the back left</label><br>
<label><b>Found On</b>: 4/7/2024</label><br>
<label><b>Email Me</b>: [email protected]</label>
</div>
</div>
<div class="forum-item">
<div class="forum-image">
<img src="images/hat.avif">
</div>
<div class="forum-labels">
<label><b>Item</b>: Black WPI Hat</label><br>
<label><b>Location</b>: Campus Center Odeum</label><br>
<label><b>Found On</b>: 4/5/2024</label><br>
<label><b>Email Me</b>: [email protected]</label>
</div>
</div>
</div>
<!--Lost Items-->
<div class="forum">
<h1 id="lost-header">Lost Items</h1>
<div class="forum-item">
<div class="forum-image">
<img src="images/gallery.svg">
</div>
<div class="forum-labels">
<label><b>Item</b>: Lenovo 65W Barrel-jack Charger</label><br>
<label><b>Last Seen</b>: HL 116 in the back left</label><br>
<label><b>Lost On</b>: 4/5/2024</label><br>
<label><b>Email Me</b>: [email protected]</label>
</div>
</div>
<div class="forum-item">
<div class="forum-image">
<img src="images/gallery.svg">
</div>
<div class="forum-labels">
<label><b>Item</b>: Black WPI Hat</label><br>
<label><b>Last Seen</b>: Campus Center Odeum</label><br>
<label><b>Lost On</b>: 4/7/2024</label><br>
<label><b>Email Me</b>: [email protected]</label>
</div>
</div>
</div>
</div>
<form id="found-form">
<img src="images/cross.svg" onclick="closeForm('found-form');">
<h1>Report a Found Item</h1>
<div>
<label for="item-desc">Item:</label>
<input type="text" id="item-desc" name="item"
placeholder="Describe the item you found (required).">
<p class="error" id="found-desc-error">Please enter an item description.</p>
</div>
<div>
<label for="location-found">Found:</label>
<input type="text" id="location-found" name="location"
placeholder="Where did you find it (required)?">
<p class="error" id="location-found-error">Please enter where you found the item.</p>
</div>
<div>
<label for="found-img">Upload Image (required):</label>
<input type="file" id="found-img" name="img" accept="image/*">
<p class="error" id="found-img-error">Please upload an image of the item.</p>
</div>
<button type="button" onclick="postFoundItem();">Post to Forum</button>
</form>
<form id="lost-form">
<img src="images/cross.svg" onclick="closeForm('lost-form');">
<h1>Report a Lost Item</h1>
<div>
<label for="item-desc-lost">Item:</label>
<input type="text" id="item-desc-lost" name="item"
placeholder="Describe the lost item (required).">
<p class="error" id="lost-desc-error">Please enter an item description.</p>
</div>
<div>
<label for="last-seen">Last Seen:</label>
<input type="text" id="last-seen" name="location"
placeholder="Where did you have it last (required)?">
<p class="error" id="last-seen-error">Please enter where you last saw the item.</p>
</div>
<div>
<label for="found-img">Upload Image:</label>
<input type="file" id="lost-img" name="img" accept="image/*">
</div>
<button type="button" onclick="postLostItem();">Post to Forum</button>
</form>
</body>
<footer>
<img width=auto height=75 src="images/WPI_Inst_Prim_BLK.png">
<p class="disclaimer">Disclaimer: This is not an official WPI website.</p>
</footer>
</html>