ldap_frontend/src/index.html

28 lines
859 B
HTML
Raw Normal View History

2023-06-09 09:43:39 +00:00
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8" />
<title>Skynet</title>
2023-07-29 21:59:20 +00:00
[ <link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png" />
2023-06-09 09:43:39 +00:00
</head>
<body>
<h1>Skynet Password Reset & Sign-up service</h1>
2023-07-29 22:03:14 +00:00
<h2><a href="SignUp/register.html"> Account Signup</a></h2>
2023-06-09 09:43:39 +00:00
<p>Please use this service if you haven't gotten a skynet account already</p>
2023-07-29 21:58:35 +00:00
<h2><a href="password.html">Password Reset</a></h2>
<p>Please use this service if you ever forget your skynet password</p>
2023-06-21 21:28:18 +00:00
<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>
2023-07-27 21:15:05 +00:00
<!--testing2-->
2023-06-09 09:43:39 +00:00
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>