aboutsummaryrefslogtreecommitdiff
path: root/templates/postform.tmpl
blob: 137232f3d5d9b41317a7f66a4c2207a298789f59 (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
<form class="post-form" action="/post" method="POST" enctype="multipart/form-data">
	{{if .ReplyContext}}
	<input type="hidden" name="reply_to_id" value="{{.ReplyContext.InReplyToID}}" />
	<label for="post-content"> Reply to {{.ReplyContext.InReplyToName}} </label>
	{{else}}
	<label for="post-content"> New post </label>
	{{end}}
	<div class="post-form-content-container">
		<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
	</div>
	<div>
		<label for ="post-visilibity"> Visibility </label>
		<select id="post-visilibity" type="file" name="visibility">
			<option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option>
			<option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option>
			<option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option>
			<option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option>
		</select>
	</div>
	<div>
		<label for ="post-file-picker"> Attachments </label>
		<input id="post-file-picker" type="file" name="attachments" multiple>
	</div>
	<button type="submit"> Post </button>
</form>