blob: c243f2dffef00a7413bc31a8ae4b28992c468108 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{template "_header.tmpl" .Common}}
<form class="box" action="/character/create" method="POST">
<h1>Create Account</h1>
<label for="character_name">NAME</label>
<input id="character_name" type="text" name="name"/>
<label for="character_sex">SEX</label>
<select id="character_sex" name="sex">
<option value="1">MALE</option>
<option value="2">FEMALE</option>
</select>
<label for="character_world">WORLD</label>
<select id="character_world" name="world">
{{range .Worlds}}
<option value="{{.Name}}">{{.Name}} ({{.Type}})</option>
{{end}}
</select>
<input type="submit" value="Create"/>
</form>
{{template "_footer.tmpl" .Common}}
|