ldap_frontend/src/signup.html

22 lines
548 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8"/>
<title>Skynet Sign-up</title>
<link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/>
</head>
<body>
2023-08-07 18:19:15 +01:00
<form id="register">
<label for="mail">Email address</label>
<input type="email" id="mail" name="email" />
<input type="submit" />
</form>
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>