moira_db/website/static/utils/parse_msg.html
2026-07-02 20:46:57 +02:00

20 lines
571 B
HTML

<input type="text" id="inp_text">
<input type="button" id="inp_bttn" value="Send">
<script>
window.onload = () => {
document.getElementById("inp_bttn").addEventListener("click", async ()=>{
fetch("/film/parse_msg/", {
method: "POST",
headers: {
"Content-Type": "plain/text"
},
body: document.getElementById("inp_text").value
})
.then(resp => {
window.location.href = resp.url;
});
});
};
</script>