mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 22:32:33 +03:00
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
{{ define "post-form" }}
|
|
<div class="d-flex justify-content-center">
|
|
|
|
<div class="col col-lg-6 col-md-8">
|
|
{{ if eq .FirstPostID 0 }}
|
|
<form id="postForm" action="/" method="POST" enctype="multipart/form-data">
|
|
{{ else }}
|
|
<form id="postForm" action="/{{ .FirstPostID }}" method="POST" enctype="multipart/form-data">
|
|
{{ end }}
|
|
|
|
{{ if eq .FirstPostID 0 }}
|
|
<input class="form-control" id="postTitle" placeholder="Title" name="title">
|
|
{{ end }}
|
|
|
|
<textarea class="form-control" id="postText" rows="5" placeholder="Text" name="text"></textarea>
|
|
<input class="form-control" type="file" id="postFiles" multiple name="files">
|
|
|
|
<div class="captcha-container text-center">
|
|
<img src="/captcha/{{ .CaptchaID }}" alt="Captcha">
|
|
</div>
|
|
<input class="form-control" type="hidden" name="captchaId" value="{{ .CaptchaID }}">
|
|
<input class="form-control" id="postCaptcha" placeholder="Captcha" name="captcha">
|
|
|
|
<div class="row">
|
|
{{ if ne .FirstPostID 0 }}
|
|
<div class="col">
|
|
<input class="form-check-input" type="checkbox" value="on" id="postSage" name="sage">
|
|
<label class="form-check-label" for="postSage">
|
|
Sage
|
|
</label>
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="col text-end">
|
|
<button class="col btn btn-outline-primary" type="submit" >
|
|
{{ if ne .FirstPostID 0 }}
|
|
Send
|
|
{{ else }}
|
|
Create thread
|
|
{{ end }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
{{ end }}
|