guildgate/register.html

31 lines
654 B
HTML
Raw Normal View History

2020-08-20 12:51:02 -04:00
<!DOCTYPE html>
2020-08-20 13:08:45 -04:00
<html>
2020-08-20 12:51:02 -04:00
<head>
2020-08-20 13:08:45 -04:00
<h1>Registration Form</h1>
2020-08-20 12:51:02 -04:00
</head>
<body>
2020-08-20 13:08:45 -04:00
<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>
2020-08-20 12:51:02 -04:00
</body>
</html>