[Sign-up] Refactored to better match what we need from the sign-up page

This commit is contained in:
eoghan.conlon 2023-08-01 13:18:56 +01:00
parent cac80847ac
commit 647a9c9981
2 changed files with 19 additions and 33 deletions

19
src/register.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8"/>
<title>Skynet Sign-up</title>
</head>
<body>
<h1>Sign-up</h1>
<form>
<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>