blob: 68a9e93633eaf2b683623ebbcb7b97c4627f4d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{define "title"}}Create User{{end}}
{{define "main"}}
<h1>Create User</h1>
<form action="/u" method="POST">
<label>
Email
<input type="email" placeholder="email" name="email" />
</label>
<label>
Username
<input type="text" placeholder="username" name="username" />
</label>
<label>
Secret
<input type="password" placeholder="secret" name="secret" />
</label>
<button type="submit">Create</button>
</form>
{{end}}
|