Sign-up form's elements added, but not laid out properly

This commit is contained in:
Eoghan Conlon 2023-06-09 11:22:30 +01:00
parent a4124db9aa
commit 9f21f139be
2 changed files with 35 additions and 0 deletions

17
SignUp/temp_success.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<!-- This file is only temporary for the purposes of testing the form and will be removed from the final product -->
<html lang="en-ie">
<head>
<meta charset="UTF-8" />
<title>Skynet Sign-up</title>
</head>
<body>
SUCCESS!!
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>