20 lines
571 B
HTML
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>
|