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>
</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" />
<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>
UL Computer Society 2023-<span id="year">2023</span>
</footer>