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>
<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">
<label for="user">Username</label>
<input type="text" id="user" name="user"/> <br/>
<label for="pass">Password</label>
<input type="password" id="pass" name="pass" minlength="8" maxlength="254"/> <br/>
<label for="confirm">Confirm</label>
<input type="password" id="confirm" name="confirm"/>
<input type="Submit" value="Submit"/>
<table id="table">
<tr>
<td><label for="user">Username</label></td>
<td><input type="text" id="user" name="user"/> <br/> </td>
</tr>
<tr>
<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>
</div>
<p id="formStatus"></p>