33 lines
		
	
	
		
			894 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			894 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <meta http-equiv="X-UA-Compatible" content="ie=edge" />
 | |
|     <title>Notes</title>
 | |
|     <link rel="stylesheet" href="../../../../resources/css/main.css" />
 | |
|     <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
 | |
|     <script async src="./script.js"></script>
 | |
|   </head>
 | |
|   <body>
 | |
|     <h1>Notes</h1>
 | |
|     
 | |
|     <div class="center">
 | |
|       <div class="inline">
 | |
|         <form id="noteInput">
 | |
|           <textarea  id="noteInputText" style="resize: none;" rows="4" ></textarea>
 | |
|           <label for="noteInputSubmit">Legg til notis</label>
 | |
|           <input type="submit" id="noteInputSubmit">
 | |
|         </form>
 | |
|       </div>
 | |
| 
 | |
|       <div id="notes" class="textboxGrid"></div>
 | |
| 
 | |
|       <div id="errorHolder"></div>
 | |
| 
 | |
| 
 | |
|     </div>
 | |
| 
 | |
|   </body>
 | |
| </html>
 |