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

View file

@ -5,6 +5,24 @@
<title>Skynet Sign-up</title> <title>Skynet Sign-up</title>
</head> </head>
<body> <body>
<h1>Sign-up</h1>
<p>
Welcome to the Skynet sign-up tool. Below is the form to fill out to get your free Skynet account provided that you
are a current member of the UL Computer Society. Please fill out your details below.
</p>
<form action="./temp_success.html">
<label for="uid">Username</label>
<input type="text" id="uid" name="uid" />
<label for="cn">First name</label>
<input type="text" id="cn" name="cn" />
<label for="sn">Surname</label>
<input type="text" id="sn" name="sn" />
<label for="mail">Email</label>
<input type="text" id="mail" name="mail" />
<label for="skDiscord">Discord Username</label>
<input type="text" id="skDiscord" name="skDiscord" />
<input type="Submit" value="Submit" />
</form>
<footer> <footer>
UL Computer Society 2023-<span id="year">2023</span> UL Computer Society 2023-<span id="year">2023</span>
</footer> </footer>

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>