pis #2

Merged
fred.boniface merged 76 commits from pis into main 2023-05-06 21:53:45 +01:00
1 changed files with 54 additions and 54 deletions
Showing only changes of commit 2d2ee0f259 - Show all commits

View File

@ -1,59 +1,59 @@
<html> <html lang="en">
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8">
<meta name="description" content="OwlBoard - Report an issue with OwlBoard."/> <meta name="description" content="OwlBoard - Report an issue with OwlBoard.">
<meta name="robots" content="noindex"/> <meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="application-name" content="OwlBoard"> <meta name="application-name" content="OwlBoard">
<meta name="author" content="Frederick Boniface"> <meta name="author" content="Frederick Boniface">
<meta name="theme-color" content="#00b7b7"> <meta name="theme-color" content="#00b7b7">
<link rel="apple-touch-icon" href="/images/app-icons/any/apple-192.png"> <link rel="apple-touch-icon" href="/images/app-icons/any/apple-192.png">
<link rel="stylesheet" type="text/css" href="./styles/main.css"/> <link rel="stylesheet" type="text/css" href="./styles/main.css">
<link rel="stylesheet" type="text/css" href="./styles/issue.css"/> <link rel="stylesheet" type="text/css" href="./styles/issue.css">
<link rel="icon" type="image/svg+xml" href="./images/icon.svg"/> <link rel="icon" type="image/svg+xml" href="./images/icon.svg">
<link rel="manifest" type="application/json" href="./manifest.json"/> <link rel="manifest" type="application/json" href="./manifest.json">
<script src="./js/lib.main.js" defer></script> <script src="./js/lib.main.js" defer></script>
<script src="./js/issue.js" defer></script> <script src="./js/issue.js" defer></script>
<title>OwlBoard - Report</title> <title>OwlBoard - Report</title>
</head> </head>
<body> <body>
<!-- Loading Box --> <!-- Loading Box -->
<div id="loading"> <div id="loading">
<div class="spinner"> <div class="spinner">
</div>
<p id="loading_desc">Loading</p>
</div> </div>
<div id="top_button" class="hide_micro"> <p id="loading_desc">Loading</p>
<a href="/"> </div>
<picture aria-label="Home" class="sidebar_control"> <div id="top_button" class="hide_micro">
<source srcset="/images/nav/back.svg" type="image/svg+xml"> <a href="/">
<img src="back-40.png" alt="Home"> <picture aria-label="Home" class="sidebar_control">
</picture> <source srcset="/images/nav/back.svg" type="image/svg+xml">
</a> <img src="back-40.png" alt="Home">
</div> </picture>
<picture> </a>
<source srcset="/images/logo/wide_logo.svg" type="image/svg+xml"> </div>
<source media="(max-height: 739px)" srcset="/images/logo/logo-full-200.png" type="image/png"> <picture>
<source srcset="/images/logo/logo-full-250.png" type="image/png"> <source srcset="/images/logo/wide_logo.svg" type="image/svg+xml">
<img class="titleimg" src="/images/logo/logo-full-250.png" alt="OwlBoard Logo"> <source media="(max-height: 739px)" srcset="/images/logo/logo-full-200.png" type="image/png">
</picture> <source srcset="/images/logo/logo-full-250.png" type="image/png">
<h2>Report an Issue</h2> <img class="titleimg" src="/images/logo/logo-full-250.png" alt="OwlBoard Logo">
<p>To help diagnosing an issue, data about your browser and device will be </picture>
collected alongside the data that you enter below.</p> <h2>Report an Issue</h2>
<p>The data will be available publically in the <a href="https://git.fjla.uk/fred.boniface/owlboard/issues"> <p>To help diagnosing an issue, data about your browser and device will be
OwlBoard Issue Tracker</a>. A preview will be shown before the data is sent.</p> collected alongside the data that you enter below.</p>
<label for="subject">Subject:</label><br> <p>The data will be available publically in the <a href="https://git.fjla.uk/fred.boniface/owlboard/issues">
<input type="text" name="subject" id="subject" class="text-entry"/><br> OwlBoard Issue Tracker</a>. A preview will be shown before the data is sent.</p>
<label for="content">Message:</label><br> <label for="subject">Subject:</label><br>
<textarea name="message" id="message" class="text-entry-long"></textarea><br> <input type="text" name="subject" id="subject" class="text-entry"><br>
<input type="submit" name="submit" id="submit" label="Preview" class="lookup-button" onclick="submit()"> <label for="content">Message:</label><br>
<textarea name="message" id="message" class="text-entry-long"></textarea><br>
<input type="submit" name="submit" id="submit" label="Preview" class="lookup-button" onclick="submit()">
<div id="preflight"> <div id="preflight">
<h3>Check & Send</h3> <h3>Check &amp; Send</h3>
<h3>---</h3> <h3>---</h3>
<h4 id="pre_subject"></h4> <h4 id="pre_subject">Subject</h4>
<p id="pre_message"></p> <p id="pre_message"></p>
<button id="send" class="lookup-button" onclick="send()">Send</button> <button id="send" class="lookup-button" onclick="send()">Send</button>
<button id="cancel" class="lookup-button" onclick="cancel()">Cancel</button> <button id="cancel" class="lookup-button" onclick="cancel()">Cancel</button>
</div> </div>
</body> </body>
</html> </html>