2023-08-01 13:18:56 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-ie">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<title>Skynet Sign-up</title>
|
2023-08-01 13:20:05 +01:00
|
|
|
<link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/>
|
2023-08-01 13:18:56 +01:00
|
|
|
</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" />
|
2023-08-01 13:18:56 +01:00
|
|
|
<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>
|