2022-11-08 23:35:49 +00:00
|
|
|
|
2022-11-08 03:18:05 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2022-11-08 23:18:46 +00:00
|
|
|
<title>Food Journal</title>
|
2022-11-08 03:18:05 +00:00
|
|
|
|
|
|
|
<!-- Recipe Card Custom Element -->
|
2022-11-13 22:33:00 +00:00
|
|
|
<script src="assets/scripts/ReviewCard.js" type="module"></script>
|
2022-11-08 23:57:02 +00:00
|
|
|
|
2022-11-08 23:18:46 +00:00
|
|
|
<!-- Main Stylesheets & Scripts -->
|
2022-11-11 08:03:56 +00:00
|
|
|
<!-- Temporarily commented out reset.css due to furthur discussion needed on the values of the default config-->
|
|
|
|
<!-- <link rel="stylesheet" href="/static/reset.css" /> -->
|
2022-11-19 20:29:50 +00:00
|
|
|
<link rel="stylesheet" href="./static/homepage.css" />
|
2022-11-13 22:33:00 +00:00
|
|
|
<script src="assets/scripts/main.js" type="module"></script>
|
2022-11-08 23:57:02 +00:00
|
|
|
|
2022-11-08 03:18:05 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-11-19 20:29:50 +00:00
|
|
|
<div class ="Top-Bar">
|
|
|
|
<img src ="./assets/images/icons/Logo.png" alt="logo" />
|
|
|
|
<h1 style="font-family:'Lucida Sans'"> Food Journal </h1>
|
|
|
|
<form id="form">
|
|
|
|
<input type='search' id="seaching" name="searchBar" placeholder="Search journal...">
|
|
|
|
<button class="click" type="search">
|
|
|
|
Search
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<!--
|
|
|
|
<form id="form">
|
|
|
|
<input type='search' id="seaching" name="searchBar" placeholder="Search journal...">
|
|
|
|
<button class="click" type="search">
|
|
|
|
Search
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
--->
|
2022-11-08 03:18:05 +00:00
|
|
|
<main>
|
2022-11-08 23:18:46 +00:00
|
|
|
<!-- Add Food Entries Here -->
|
2022-11-19 20:29:50 +00:00
|
|
|
<div class="Review-boxes">
|
|
|
|
<h2> Recent Reviews </h2>
|
2022-11-20 22:12:34 +00:00
|
|
|
<img src ="./assets/images/icons/Grouppink.png" alt="CREATE" id="create-btn" onclick="window.location.assign('./CreatePage.html')"></img>
|
2022-11-19 20:29:50 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="Filter-box">
|
|
|
|
</div>
|
|
|
|
<div class="review-container" id="review-container"></div>
|
2022-11-08 03:18:05 +00:00
|
|
|
</main>
|
2022-11-19 20:29:50 +00:00
|
|
|
<!--<button type="button" id="create-btn"><a href='./CreatePage.html'></a>CREATE</button>-->
|
2022-11-08 03:18:05 +00:00
|
|
|
</body>
|
2022-11-11 20:07:58 +00:00
|
|
|
</html>
|