[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

View file

@ -1,33 +0,0 @@
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8"/>
<title>Skynet Sign-up</title>
</head>
<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"/> <br/>
<label for="cn">First name</label>
<input type="text" id="cn" name="cn"/> <br/>
<label for="sn">Surname</label>
<input type="text" id="sn" name="sn"/> <br/>
<label for="mail">Email</label>
<input type="text" id="mail" name="mail"/> <br/>
<label for="skDiscord">Discord Username</label>
<input type="text" id="skDiscord" name="skDiscord"/> <br/>
<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>

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>