feat: merged in css from the almnui renew page/repo https://gitlab.skynet.ie/compsoc1/skynet/website/alumni-renew
This commit is contained in:
parent
2038a88466
commit
d864a3bafd
11 changed files with 735 additions and 656 deletions
|
@ -1,41 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-ie">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Skynet</title>
|
||||
<link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/index.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div id="title">
|
||||
<img src="images/sharky_vector_svg.svg" alt="Picture of Sharky, the mascot of skynet" width="145" height="81.56"/>
|
||||
<h1>Skynet Password Reset & Sign-up service</h1>
|
||||
</div>
|
||||
<div class="boxes">
|
||||
<h2><a href="./signup.html">Sign-up Page</a></h2>
|
||||
<p>Please use this if you have yet to activate an account on Skynet before.</p>
|
||||
<h2><a href="./password.html">Change Password</a></h2>
|
||||
<p>Please use this service to change your skynet password</p>
|
||||
<h2><a href="./modify.html">User modification</a></h2>
|
||||
<p>
|
||||
Please use this service to modify your user data (email, login ssh key, etc.)
|
||||
</p>
|
||||
<h2><a href="./recovery/username.html">Forgot your username?</a></h2>
|
||||
<p>
|
||||
Please use this service to get a reminder email with your skynet username
|
||||
</p>
|
||||
<h2>
|
||||
<a href="./recovery/password.html">Forgot your password?</a>
|
||||
</h2>
|
||||
<p>
|
||||
Please use this service to reset your password.
|
||||
</p>
|
||||
</div>
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
</body>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Skynet Self Service</title>
|
||||
<link rel="icon" type="image/png" href="./images/favicon/favicon-16x16.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="./stylesheets/index.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<header class="page-header">
|
||||
<img src="./images/sharky.svg" alt="Sharky, our mascot" width="145" height="81.56"/>
|
||||
<h1>Skynet self service</h1>
|
||||
</header>
|
||||
<main class="page-body">
|
||||
<h2><a href="./signup.html">Sign-up</a></h2>
|
||||
<p>Please use this if you have yet to activate an account on Skynet before.</p>
|
||||
<h2><a href="./password.html">Change Password</a></h2>
|
||||
<p>Please use this service to change your skynet password</p>
|
||||
<h2><a href="./modify.html">Account modification</a></h2>
|
||||
<p>
|
||||
Please use this service to modify your user data (email, login ssh key, etc.)
|
||||
</p>
|
||||
<h2><a href="./recovery/username.html">Forgot your username?</a></h2>
|
||||
<p>
|
||||
Please use this service to get a reminder email with your skynet username
|
||||
</p>
|
||||
<h2>
|
||||
<a href="./recovery/password.html">Forgot your password?</a>
|
||||
</h2>
|
||||
<p>
|
||||
Please use this service to reset your password.
|
||||
</p>
|
||||
</main>
|
||||
<footer class="page-footer">
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue