mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-10 05:34:44 +00:00
Move filter bar to separate div
This commit is contained in:
parent
79e7561beb
commit
f300c740c4
@ -1,5 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
@ -18,6 +19,7 @@
|
||||
<link rel="stylesheet" href="./static/homepage.css" />
|
||||
<script src="assets/scripts/main.js" type="module"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<div class="top-bar">
|
||||
@ -33,25 +35,24 @@
|
||||
<div class="search-bar">
|
||||
<form id="form">
|
||||
<input type="search" id="search-bar" name="searchBar" placeholder="Search tags...">
|
||||
<!---
|
||||
<button class="click" type="search"> Search </button>
|
||||
--->
|
||||
<div class="Filter-box">
|
||||
|
||||
</div>
|
||||
<button id="clear-search">Clear Search</button>
|
||||
</form>
|
||||
<img src="./assets/images/search_button.png" alt="SEARCH BTN" id="search-btn" />
|
||||
</div>
|
||||
<div class="center-display">
|
||||
<img src ="./assets/images/create_button.png" alt="CREATE" id="create-btn" title="Add an entry!" onclick="window.location.assign('./CreatePage.html')"/>
|
||||
<h2 id="recent-reviews-text"> Recent Reviews </h2>
|
||||
<img src ="./assets/images/create_button.png" id="create-btn-invis" draggable="false"/>
|
||||
|
||||
<div class="filter-bar">
|
||||
<label for="sort">Filtering Method:</label>
|
||||
<select id="sort">
|
||||
<option value="recent">Most Recent</option>
|
||||
<option value="top">Top Rated</option>
|
||||
</select>
|
||||
<button id="clear-search">Clear Search</button>
|
||||
</div>
|
||||
|
||||
<div class="center-display">
|
||||
<img src="./assets/images/create_button.png" alt="CREATE" id="create-btn" title="Add an entry!"
|
||||
onclick="window.location.assign('./CreatePage.html')" />
|
||||
<h2 id="recent-reviews-text"> Recent Reviews </h2>
|
||||
<img src="./assets/images/create_button.png" id="create-btn-invis" draggable="false" />
|
||||
</div>
|
||||
|
||||
<div class="review-container" id="review-container"></div>
|
||||
@ -61,4 +62,5 @@
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user