Add page conent to issue.html
Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
parent
21c17be5ad
commit
e4bdb1cc01
@ -15,7 +15,23 @@
|
|||||||
<div id="top_button" class="hide_micro">
|
<div id="top_button" class="hide_micro">
|
||||||
<button aria-label="Back" class="sidebar_control" onclick="history.back()">⇦</button>
|
<button aria-label="Back" class="sidebar_control" onclick="history.back()">⇦</button>
|
||||||
</div>
|
</div>
|
||||||
|
<picture>
|
||||||
<p>This page is (temporarily) intentionally blank.</p>
|
<source media="(min-width:800px)" secset="/images/logo/logo-full-715.webp" type="image/webp">
|
||||||
|
<source media="(min-width:800px)" srcset="/images/logo/logo-full-715.png" type="image/png">
|
||||||
|
<source media="(min-width:700px)" srcset="/images/logo/logo-full-512.webp" type="image/webp">
|
||||||
|
<source media="(min-width:700px)" srcset="/images/logo/logo-full-512.png" type="image/png">
|
||||||
|
<source media="(min-width:450px)" srcset="/images/logo/logo-full-256.webp" type="image/png">
|
||||||
|
<source media="(min-width:450px)" srcset="/images/logo/logo-full-256.png" type="image/png">
|
||||||
|
<img class="titleimg" src="/images/logo/logo-full-512.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>
|
</body>
|
||||||
</html>
|
</html>
|
@ -68,6 +68,32 @@ body a:visited {color:var(--link-visited-color)}
|
|||||||
font-family: urwgothic, sans-serif;
|
font-family: urwgothic, sans-serif;
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
|
.text-entry {
|
||||||
|
text-align: center;
|
||||||
|
border: black;
|
||||||
|
width: 75%;
|
||||||
|
max-width: 250px;
|
||||||
|
border-radius: 40px;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: urwgothic, sans-serif;
|
||||||
|
transition: 0.2s;
|
||||||
|
}
|
||||||
|
.text-entry-long{
|
||||||
|
text-align: left;
|
||||||
|
border: black;
|
||||||
|
width: 75%;
|
||||||
|
max-width: 250px;
|
||||||
|
height: 30%;
|
||||||
|
max-height: 350px;
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: urwgothic, sans-serif;
|
||||||
|
transition: 0.2s;
|
||||||
|
}
|
||||||
label {
|
label {
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user