Style the page real quick

This commit is contained in:
evanc 2023-09-26 21:49:23 +00:00
parent 3c3649ccfe
commit 2038a88466

View file

@ -4,19 +4,37 @@
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<title>Account Recovery</title> <title>Account Recovery</title>
<link rel="icon" type="image/png" href="../images/favicon/favicon-16x16.png"/> <link rel="icon" type="image/png" href="../images/favicon/favicon-16x16.png"/>
<link rel="stylesheet" type="text/css" href="../stylesheets/index.css"/>
</head> </head>
<body> <body>
<form id="recovery"> <div id="title">
<label for="username">Username</label> <a href="../"><img src="../images/sharky_vector_svg.svg" alt="Picture of Sharky, the mascot of skynet" width="145"
<input type="text" id="username" name="username"/> height="81.56"/> </a>
<p>Or</p> <h1>Skynet Password Reset & Sign-up service</h1>
<label for="email">Email</label> </div>
<input type="text" id="email" name="email"/> <div class="boxes">
<br/> <h2>Forgot Password</h2>
<br/> <p>Please use this page to request a password reset link to your linked email.</p>
<input type="submit" value="submit"/> <form id="recovery">
</form> <table id="table">
<p id="formStatus"></p> <tr>
<td><label for="username">Username</label> </td>
<td><input type="text" id="username" name="username"/> <br/></td>
</tr>
<tr>
<td>Or<br/></td>
</tr>
<tr>
<td><label for="email">Email</label> </td>
<td><input type="text" id="email" name="email"/> <br/></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="submit"/></td>
</tr>
</table>
</form>
<p id="formStatus"></p>
</div>
<footer> <footer>
UL Computer Society 2023-<span id="year">2023</span> UL Computer Society 2023-<span id="year">2023</span>
</footer> </footer>
@ -71,4 +89,4 @@
<script> <script>
document.getElementById('year').textContent = new Date().getFullYear().toString() document.getElementById('year').textContent = new Date().getFullYear().toString()
</script> </script>
</html> </html>