ldap_frontend/src/register.html

26 lines
765 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>
<h1>Sign-up</h1>
2023-08-01 13:26:52 +01:00
<form id="form">
<label for="auth">Auth code</label>
<input type="text" id="auth" name="auth" /> <br/>
<label for="uid">Username</label>
<input type="text" id="uid" name="username" /> <br />
<label for="pass">Password</label>
<input type="password" id="pass" name="password" />
<input type="Submit" value="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>