summaryrefslogtreecommitdiff
path: root/views/forum_edit.pug
blob: ff2a5b1924b96b54f423203ceb3ffdc653402ddb (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
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title Edit Post
		style.
			input, textarea { width: min(45rem,100%) }
	body
		include header
		article
			h1 Edit Post

			form(method="post" action="/forum/edit/"+post.post_id)
				textarea(
					name="body"
					rows=20
					cols=80
					maxlength=32000
					required
				)
					|
					| #{post.body}
				p
					button(type="submit") Submit