diff options
author | FChannel <> | 2022-06-19 12:47:32 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 16:03:29 -0700 |
commit | b02f813e519dc890f2eb4827ff52cff3ff90c828 (patch) | |
tree | d020fbdefda52542aab3f4250bf93533e9f38504 /static/bottom.html | |
parent | cd99df8d6781c3f0a191d119ea0ddf8c4a16089f (diff) |
v0.1.0
Diffstat (limited to 'static/bottom.html')
-rw-r--r-- | static/bottom.html | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/static/bottom.html b/static/bottom.html deleted file mode 100644 index d48db20..0000000 --- a/static/bottom.html +++ /dev/null @@ -1,50 +0,0 @@ -{{ define "bottom" }} -<div id="reply-box" class="popup-box" style="display: none;"> - <div id="reply-header"> - <span id="reply-header-text">...</span> - <div id="reply-close" style="display: inline-block; float: right;"><a href="javascript:closeReply()">[X]</a></div> - </div> - <form onsubmit="sessionStorage.setItem('element-closed-reply', true)" id="reply-post" action="/post" method="post" enctype="multipart/form-data"> - <input id="reply-name" name="name" type="text" placeholder="Name" maxlength="100"> - <input id="reply-options" name="options" type="text" placeholder="Options" maxlength="100"> - <textarea id="reply-comment" name="comment" maxlength="2000" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea> - <input id="reply-file" name="file" type="file"> - <input id="reply-submit" type="submit" value="Reply" style="float: right;"> - <input type="hidden" id="inReplyTo-box" name="inReplyTo" value="{{ .Board.InReplyTo }}"> - <input type="hidden" id="sendTo" name="sendTo" value="{{ .Board.To }}"> - <input type="hidden" id="boardName" name="boardName" value="{{ .Board.Name }}"> - <input type="hidden" id="captchaCode" name="captchaCode" value="{{ .Board.CaptchaCode }}"> - <input type="hidden" id="returnTo" name="returnTo" value="{{ .ReturnTo }}"><br> - <input type="checkbox" name="sensitive"><span>Mark attachment as sensitive</span><br> - <div style="width: 202px; margin: 0 auto; padding-top: 12px;"> - <label for="captcha">Captcha:</label><br> - <input style="display: inline-block;" type="text" id="captcha" name="captcha" autocomplete="off"><br> - </div> - <div style="width: 230px; margin: 0 auto;"> - <img src="{{ .Board.Captcha }}"> - </div> - </form> -</div> - -<div id="report-box" class="popup-box" style="display: none;"> - <div id="report-header" style="text-align: center; display: inline-block; z-index: 0; cursor: move;"></div><div id="report-close" style="display: inline-block; float: right;"><a href="javascript:closeReport()">[X]</a></div> - <form onsubmit="sessionStorage.setItem('element-closed-report', true)" id="report-post" action="/report" method="post"> - <label for="comment">Reason:</label><br> - <textarea id="report-comment" name="comment" rows="12" cols="54" style="width: 396px;" maxlength="100" oninput="sessionStorage.setItem('element-report-comment', document.getElementById('report-comment').value)"></textarea> - <br> - <input id="report-submit" type="submit" value="Report" style="float: right;"> - <input type="hidden" id="report-inReplyTo-box" name="id" value="{{ .Board.InReplyTo }}"> - <input type="hidden" id="sendTo" name="sendTo" value="{{ .Board.To }}"> - <input type="hidden" id="boardName" name="board" value="{{ .Board.Name }}"> - <input type="hidden" name="close" value="0"> - <input type="hidden" id="captchaCode" name="captchaCode" value="{{ .Board.CaptchaCode }}"> - <div style="width: 202px; margin: 0 auto; padding-top: 12px;"> - <label for="captcha">Captcha:</label><br> - <input style="display: inline-block;" type="text" id="captcha" name="captcha" autocomplete="off"><br> - </div> - <div style="width: 230px; margin: 0 auto;"> - <img src="{{ .Board.Captcha }}"> - </div> - </form> -</div> -{{ end }} |