2020-09-17 16:19:05 -04:00
|
|
|
{{ define "register" }}
|
|
|
|
{{ template "header" .}}
|
2020-08-20 12:51:02 -04:00
|
|
|
<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-09-17 16:19:05 -04:00
|
|
|
{{ template "footer" .}}
|
|
|
|
{{ end }}
|