aboutsummaryrefslogtreecommitdiff
path: root/templates/account_create.tmpl
blob: 6ade0bf50777472adb658af24ee3b5c81cd5c136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{template "_header.tmpl" .Common}}
	<form class="box" action="/account/create" method="POST">
		<h1>Create Account</h1>

		<label for="create_account">ACCOUNT NUMBER</label>
		<input id="create_account" type="password" name="account"/>

		<label for="create_email">EMAIL</label>
		<input id="create_email" type="text" name="email"/>

		<label for="create_email_confirm">CONFIRM EMAIL</label>
		<input id="create_email_confirm" type="text" name="email_confirm"/>

		<label for="create_password">PASSWORD</label>
		<input id="create_password" type="password" name="password"/>

		<label for="create_password_confirm">CONFIRM PASSWORD</label>
		<input id="create_password_confirm" type="password" name="password_confirm"/>

		<input type="submit" value="Create"/>
	</form>
{{template "_footer.tmpl" .Common}}