rastrillo / idear Public

Clone
git clone https://amadan.net/rastrillo/idear

Plain git — no account needed to clone.

Download

Download this file

1{{define "content"}}
2<h1>Create an account</h1>
3{{with .Content}}
4{{if .Error}}<p data-error>{{.Error}}</p>{{end}}
5<form method="post" action="/signup">
6<input type="hidden" name="return_to" value="{{.ReturnTo}}">
7<label>Email <input type="email" name="email" value="{{.Email}}" required autocomplete="username"></label>
8<label>Password <input type="password" name="password" required minlength="8" autocomplete="new-password"></label>
9<label>Invitation token <input type="text" name="invite" value="{{.Invite}}"></label>
10<button type="submit">Sign up</button>
11</form>
12{{end}}
13{{end}}
14