honk/views/honkform.html

39 lines
1.3 KiB
HTML
Raw Normal View History

<p id="honkformhost">
2019-04-09 13:59:33 +02:00
<button onclick="showhonkform(); return false"><a href="/newhonk">it's honking time</a></button>
<form id="honkform" action="/honk" method="POST" enctype="multipart/form-data" style="display: none">
<p>
2019-04-19 01:28:19 +02:00
in reply to: <input type="text" name="rid" id="ridinput" value="" autocomplete=off>
2019-04-09 13:59:33 +02:00
<input type="hidden" name="CSRF" value="{{ .HonkCSRF }}">
<p>
2019-06-02 20:51:02 +02:00
<label id="donker">attach: <input onchange="updatedonker();" type="file" name="donk"><span></span></label>
<p>
<textarea name="noise" id="honknoise">{{ .Noise }}</textarea>
2019-04-09 13:59:33 +02:00
<p>
<input type="submit" value="it's gonna be honked">
<input type="submit" name="preview" value="preview">
2019-04-09 13:59:33 +02:00
</form>
<script>
function showhonkform(elem, rid, hname) {
var form = document.getElementById("honkform")
form.style = "display: block"
if (elem) {
form.remove()
elem.parentElement.insertAdjacentElement('beforebegin', form)
} else {
elem = document.getElementById("honkformhost")
elem.insertAdjacentElement('afterend', form)
}
var ridinput = document.getElementById("ridinput")
var honknoise = document.getElementById("honknoise")
2019-04-09 13:59:33 +02:00
if (rid) {
ridinput.value = rid
honknoise.value = "@" + hname + " "
2019-04-09 13:59:33 +02:00
}
2019-07-10 07:40:14 +02:00
document.getElementById("honknoise").focus()
2019-04-09 13:59:33 +02:00
}
function updatedonker() {
var el = document.getElementById("donker")
2019-06-02 20:51:02 +02:00
el.children[1].textContent = el.children[0].value.slice(-20)
2019-04-09 13:59:33 +02:00
}
</script>