make register page prettier

This commit is contained in:
stryan 2020-08-20 13:08:45 -04:00
parent 43f1198b0c
commit b549ff0d12

View File

@ -1,17 +1,30 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html>
<head> <head>
<meta charset="UTF-8"> <h1>Registration Form</h1>
<title></title>
</head> </head>
<body> <body>
<h1>Register</h1> <form method="POST" action="/register">
<form method="POST" action="/register"> <table>
<input type="text" name="username"> <tr>
<input type="password" name="password"> <td>Username:</td>
<input type="text" name="email"> <td><input type="text" placeholder="username" name="username"</td>
<input type="text" name="secret"> <tr>
<input type="submit" value="Submit"> <td>Email Address:</td>
</form> <td><input type="mail" placeholder="Email address" name="email"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" placeholder="Password" name="password"></td>
</tr>
<tr>
<td>Secret:</td>
<td><input type="password" placeholder="secret" name="secret"></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body> </body>
</html> </html>