mirror of
				https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
				synced 2025-10-30 19:46:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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" />
 | |
|   <title>Food Journal</title>
 | |
| 
 | |
|   <!-- Recipe Card Custom Element -->
 | |
|   <script src="assets/scripts/ReviewCard.js" type="module"></script>
 | |
| 
 | |
| 
 | |
|   <!-- Main Stylesheets & Scripts -->
 | |
|   <!-- Temporarily commented out reset.css due to furthur discussion needed on the values of the default config-->
 | |
|   <!-- <link rel="stylesheet" href="/static/reset.css" /> -->
 | |
|   <link rel="stylesheet" href="./static/CreatePage.css" />
 | |
|   <link rel="icon" href="./assets/images/icons/favicon.ico">
 | |
|   <script src="./assets/scripts/CreatePage.js" type="module"></script>
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <input type="button" value="Home" id="home-btn" onclick="window.location.assign('./index.html')">
 | |
|   <div class ="Top-Bar">
 | |
|     <img src ="./assets/images/icons/Logo.png" alt="logo" />
 | |
|     <h1> Food Journal </h1>
 | |
|     <!--
 | |
|     <form id="form">
 | |
|         <input type='search' id="seaching" name="searchBar" placeholder="Search journal...">
 | |
|         <button class="click" type="search">
 | |
|             Search
 | |
|         </button>
 | |
|     </form>
 | |
|     --->
 | |
| </div>
 | |
|   <div class="journal-form">
 | |
|     <h1>New Entry </h1>
 | |
| 
 | |
|     <form id="new-food-entry">
 | |
|       <fieldset>
 | |
|         <legend>Pic:</legend>
 | |
|         <label for="mealImage">
 | |
|           Source:
 | |
|           <input type="text" id="mealImg" name="mealImg">
 | |
|         </label>
 | |
|         <label for="image-alt">
 | |
|           Alt Text:
 | |
|           <input type="text" id="imgAlt" name="imgAlt">
 | |
|         </label>
 | |
|       </fieldset>
 | |
|       <fieldset>
 | |
|         <legend> Meal: </legend>
 | |
|         <label for="Meal: ">Meal:
 | |
|           <input type="text" id="mealName" name="mealName" required>
 | |
|         </label>
 | |
|         <label for="comments">Comments:
 | |
|           <br>
 | |
|           <textarea name="comments" id="comments"></textarea>
 | |
|         </label>
 | |
|       </fieldset>
 | |
|     <fieldset class="rating">
 | |
|       <legend> Rating: </legend>
 | |
|       <input type="radio" id="s5" name="rating" value="5"/> <label for="s5" id="s5-select"> 5 stars </label>
 | |
|       <input type="radio" id="s4" name="rating" value="4"/> <label for="s4" id="s4-select"> 4 stars </label>
 | |
|       <input type="radio" id="s3" name="rating" value="3"/> <label for="s3" id="s3-select"> 3 stars </label>
 | |
|       <input type="radio" id="s2" name="rating" value="2"/> <label for="s2" id="s2-select"> 2 stars </label>
 | |
|       <input type="radio" id="s1" name="rating" value="1"/> <label for="s1" id="s1-select"> 1 star </label>
 | |
|     </fieldset>
 | |
| 
 | |
|       <fieldset>
 | |
|         <legend>Other Info:</legend>
 | |
|         <label for="restaurant">
 | |
|           Restaurant:
 | |
|           <input type="text" id="restaurant" name="restaurant" required>
 | |
|         </label>
 | |
|         <label for="tag-form">
 | |
|           Tags:
 | |
|           <input type="text" id="tag-form" name="tag-form">
 | |
|           <div class='tag-container' id="tag-container-form">
 | |
|         </div>
 | |
|         <button type="button" id="tag-add-btn">Add Tag</button>
 | |
|       </label>
 | |
| 
 | |
| 
 | |
|       </fieldset>
 | |
|       <button type="submit" id="save-btn" value="Submit">Save Review</button>
 | |
|     </form>
 | |
|   </div> 
 | |
| </body>
 | |
| 
 | |
| </html> |