aboutsummaryrefslogtreecommitdiff
path: root/templates/character_create.tmpl
blob: 1a235ddd42e2b5ca5f861b7f47365e503c9f1fae (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 Character</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}}