-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter.html
58 lines (39 loc) · 2.11 KB
/
filter.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Berkeley Dining Diary</title>
<link rel="stylesheet" href="styles.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=Berkshire+Swash&display=swap" rel="stylesheet">
</head>
<body>
<div class="navBarContainer" id="barContainer">
<a href="welcome.html" class="mainBar">
<img src="assets/Dining.png" id="tinyLogo">
</a>
<p id="loginText" class="mainBar"><a style="text-decoration: none; color: black;" href="welcome.html">Welcome</a></p>
<p id="registerText" class="mainBar"><a style="text-decoration: none; color: black;" href="post.html">Submit</a></p>
<p id="registerText" class="mainBar"><a style="text-decoration: none; color: black;" href="explore.html"><u>Explore</u></a></p>
<p id="registerText"><a style="text-decoration: none; color: black;" target="_blank" href="https://dining.berkeley.edu/menus/" class="tab">Menus</a></p>
<p id="registerText" class="mainBar"><a style="text-decoration: none; color: black;" href="index.html">Log Out</a></p>
</div>
<div id="loginBodyContainer">
<p id="findFilterText2" style="margin-bottom: 5px;" class="loginBoxObject">Entries for PLACERHOLDER</p>
<div id="filterResultsContainer">
<div id="filterTitlesContainer">
<p id="foodItemTitleText">Food Item</p>
<p id="usernameTitleText">Username</p>
<p id="ratingTitleText">Rating</p>
</div>
</div>
<p id="backText" class="loginBoxObject"><a id="submitTextLogin" style="text-decoration: none; color: black;" href="explore.html">Back</a></p>
<p id="statusMessageText"></p>
<div id="loginContainer">
</div>
</div>
<script src="scriptsFilter.js"></script>
</body>
</html>