ldap_frontend/src/index.html
2023-08-08 19:00:44 +01:00

26 lines
No EOL
731 B
HTML

<!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"/>
</head>
<body>
<h1>Skynet Password Reset & Sign-up service</h1>
<h2><a href="password.html">Password Change</a></h2>
<p>Please use this service if you ever need 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>
<!--testing2-->
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>