feat : added link to SSH page from main page
Might also need to remove SSH stuff from modify page
This commit is contained in:
parent
0af81c6efa
commit
7f40a4b259
1 changed files with 51 additions and 43 deletions
|
@ -1,13 +1,13 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-ie">
|
<html lang="en-ie">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<title>Skynet Self Service</title>
|
<title>Skynet Self Service</title>
|
||||||
<link href="./images/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
|
<link href="./images/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
|
||||||
<link href="./stylesheets/index.css" rel="stylesheet" type="text/css"/>
|
<link href="./stylesheets/index.css" rel="stylesheet" type="text/css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<header class="page-header">
|
<header class="page-header">
|
||||||
<img alt="Sharky, our mascot" height="81.56" src="./images/sharky.svg" width="145"/>
|
<img alt="Sharky, our mascot" height="81.56" src="./images/sharky.svg" width="145"/>
|
||||||
<h1>Skynet Self Service</h1>
|
<h1>Skynet Self Service</h1>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
<a href="./password.html">Change Password</a>
|
<a href="./password.html">Change Password</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
Please use this service to change your Skynet password
|
Please use this service to change your Skynet password.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<a href="./modify.html">Account modification</a>
|
<a href="./modify.html">Account modification</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
Please use this service to modify your user data (email, login ssh key, etc.)
|
Please use this service to modify your user data (email, login ssh key, etc.).
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
<a href="./recovery/username.html">Forgot your username?</a>
|
<a href="./recovery/username.html">Forgot your username?</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
Please use this service to get a reminder email with your Skynet username
|
Please use this service to get a reminder email with your Skynet username.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
|
@ -53,6 +53,14 @@
|
||||||
Please use this service to reset your password.
|
Please use this service to reset your password.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>
|
||||||
|
<a href="./ssh.html">SSH</a>
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
Please use this service to manage your SSH keys.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
UL Computer Society 2023-<span id="year">2023</span>
|
UL Computer Society 2023-<span id="year">2023</span>
|
||||||
|
@ -60,6 +68,6 @@
|
||||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||||
</script>
|
</script>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue