Copied across the general html base

This commit is contained in:
Eoghan Conlon 2023-06-09 10:51:56 +01:00
parent 2144906a0e
commit 5e3dd5a3ac

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8" />
<title>Skynet Sign-up</title>
</head>
<body>
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>