34 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
|     <head>
 | |
|         <meta charset="UTF-8"/>
 | |
|         <meta name="description" content="OwlBoard - Live train departures for traincrew."/>
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|         <meta name="application-name" content="OwlBoard">
 | |
|         <meta name="author" content="Frederick Boniface">
 | |
|         <meta name="theme-color" content="#155bb7">
 | |
|         <link rel="stylesheet" type="text/css" href="./styles/main.css"/>
 | |
|         <link rel="icon" type="image/svg+xml" href="./images/icon.svg"/>
 | |
|         <link rel="manifest" type="application/json" href="./manifest.json"/>
 | |
|         <!-- NO SCRIPTS LOADED - NOT REQUIRED AT PRESENT -->
 | |
|         <title>OwlBoard - Report</title>
 | |
|     </head>
 | |
|     <body>
 | |
|       <div id="top_button" class="hide_micro">
 | |
|         <button aria-label="Back" class="sidebar_control" onclick="history.back()">⇦</button>
 | |
|       </div>
 | |
|       <picture>
 | |
|         <source srcset="/images/logo/wide_logo.svg" type="image/svg+xml">
 | |
|         <source srcset="/images/logo/logo-full-256.webp" type="image/webp">
 | |
|         <img class="titleimg" src="/images/logo/logo-full-256.png" alt="OwlBoard Logo">
 | |
|       </picture>
 | |
|       <h2>Report an Issue</h2>
 | |
|         <p>This page's functionality is not yet implemented.</p>
 | |
|         <form>
 | |
|           <label for="subject">Subject:</label><br>
 | |
|           <input type="text" name="subject" id="subject" class="text-entry"/><br>
 | |
|           <label for="content">Message:</label><br>
 | |
|           <textarea name="content" id="content" class="text-entry-long"></textarea><br>
 | |
|           <input type="submit" name="submit" id="submit" label="Submit" class="lookup-button">
 | |
|         </form>
 | |
|     </body>
 | |
| </html> |