1
0
Fork 0
forked from anton/matekasse
matekasse/Website/templates/confirmation.html

18 lines
512 B
HTML
Raw Normal View History

2024-02-17 01:12:27 +00:00
<html>
<script src="/socket.io.js" integrity="sha512-q/dWJ3kcmjBLU4Qc47E4A9kTB4m3wuTY7vkFJDTZKjTs8jhyGQnaUrxa0Ytd0ssMZhbNua9hE+E7Qv1j+DyZwA==" crossorigin="anonymous"></script>
<script type="text/javascript" charset="utf-8">
if (confirm("{message}") == true) {
fetch("{{destination}}", {
method: "POST",
body: JSON.stringify({data}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
}
else {
window.location="/list"
}
</script>
</html>