lishwist/templates/register.gotmpl

17 lines
377 B
Go Template

{{define "body"}}
<form method="post" autocomplete="off">
<label>
Username
<input name="username" required>
</label>
<label>
Password
<input name="newPassword" type="password" required>
</label>
<label>
Confirm password
<input name="confirmPassword" type="password" required>
</label>
<input type="submit" value="Register">
</form>
{{end}}