summaryrefslogtreecommitdiff
path: root/views/forum_post.pug
blob: 7fccdd900cd100c39ecd6e6e89a63422f92026e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title New Thread
		style.
			input, textarea { width: min(45rem,100%) }
		script.
			function next(event,sel) {
				if (event.keyCode === 13) {
					document.querySelector(sel).focus()
					return false
				}
				return true
			}
	body
		include header
		article
			h1 New Thread
			form(method="post" action="/forum/post")
				p Subject:
					br
					input(
						type="text"
						name="subject"
						size=80
						maxlength=80
						required
						pattern=".*\\S+.*"
						autofocus
						onkeypress="return next(event,'textarea')"
					)
				p Body:
					br
					textarea(
						name="body"
						rows=20
						cols=80
						maxlength=32000
						required
					)
				p If you are reporting a problem, you MUST include the game number!
				p
					button(type="submit") Submit