mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
35 lines
1.5 KiB
Cheetah
35 lines
1.5 KiB
Cheetah
<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>
|
|
<span class="post-form-field">
|
|
<label for="post-visilibity"> Visibility </label>
|
|
<select id="post-visilibity" 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>
|
|
</span>
|
|
<span class="post-form-field">
|
|
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on">
|
|
<label for="nsfw-checkbox"> Is NSFW </label>
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<span class="post-form-field">
|
|
<label for ="post-file-picker"> Attachments </label>
|
|
<input id="post-file-picker" type="file" name="attachments" multiple>
|
|
</span>
|
|
</div>
|
|
<button type="submit"> Post </button>
|
|
</form>
|
|
|