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>
<html lang="en">
<html>
<head>
<meta charset="UTF-8">
<title></title>
<h1>Registration Form</h1>
</head>
<body>
<h1>Register</h1>
<form method="POST" action="/register">
<input type="text" name="username">
<input type="password" name="password">
<input type="text" name="email">
<input type="text" name="secret">
<input type="submit" value="Submit">
</form>
<form method="POST" action="/register">
<table>
<tr>
<td>Username:</td>
<td><input type="text" placeholder="username" name="username"</td>
<tr>
<td>Email Address:</td>
<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>
</html>