Making the register form into a table

Signed-off-by: Eoghan Conlon <eoghanconlon73@skynet.ie>
This commit is contained in:
eoghanconlon73 2023-09-11 12:40:06 +01:00
parent 12b1ecd2b5
commit 6d07efc44d

View file

@ -15,13 +15,23 @@
<h2>Sign-up</h2> <h2>Sign-up</h2>
<p>Thank you for signing up for your free skynet account. Please complete the process by filling in the form below</p> <p>Thank you for signing up for your free skynet account. Please complete the process by filling in the form below</p>
<form id="register"> <form id="register">
<label for="user">Username</label> <table id="table">
<input type="text" id="user" name="user"/> <br/> <tr>
<label for="pass">Password</label> <td><label for="user">Username</label></td>
<input type="password" id="pass" name="pass" minlength="8" maxlength="254"/> <br/> <td><input type="text" id="user" name="user"/> <br/> </td>
<label for="confirm">Confirm</label> </tr>
<input type="password" id="confirm" name="confirm"/> <tr>
<input type="Submit" value="Submit"/> <td><label for="pass">Password</label></td>
<td><input type="password" id="pass" name="pass" minlength="8" maxlength="254"/> <br/></td>
</tr>
<tr>
<td><label for="confirm">Confirm</label></td>
<td><input type="password" id="confirm" name="confirm"/> </td>
</tr>
<tr>
<td colspan="2"> <input type="Submit" value="Submit"/> </td>
</tr>
</table>
</form> </form>
</div> </div>
<p id="formStatus"></p> <p id="formStatus"></p>