direct message me this is probably a bad idea

This commit is contained in:
etherware-novice 2024-10-26 15:44:25 -05:00
parent 11f20bdeab
commit 276c2dbedf
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
2 changed files with 40 additions and 0 deletions

View File

@ -9,6 +9,7 @@ timezone,/oneshot/timezone
coding bibble,/oneshot/codingbible
footgun,/oneshot/footgun
guestbook,http://users3.smartgb.com/g/g.php?a=s&i=g36-36498-b6
direct message me,/personal/qa
thanks page,/thanks
goomyshrine,/personal/goomyshrine
github repo,https://github.com/etherware-novice/comicsite,/assets/images/blinkers/cooltext462925409710685.gif

1 name,link,img
9 coding bibble,/oneshot/codingbible
10 footgun,/oneshot/footgun
11 guestbook,http://users3.smartgb.com/g/g.php?a=s&i=g36-36498-b6
12 direct message me,/personal/qa
13 thanks page,/thanks
14 goomyshrine,/personal/goomyshrine
15 github repo,https://github.com/etherware-novice/comicsite,/assets/images/blinkers/cooltext462925409710685.gif

39
personal/qa.html Normal file
View File

@ -0,0 +1,39 @@
---
title: question candy
---
<h2>Send your comments and questions directly to me, and I'll put them here if they're funny</h2><br>
<textarea cols="50" id="username" placeholder="give me ur name"></textarea>
<textarea cols="50" id="question" placeholder="say something funny or you'll regret it"></textarea>
<br>
<button id="send">send</button>
<script>
async function sendQuestion() {
var questionfield = document.getElementById("question");
var userfield = document.getElementById("username");
let tohook = await fetch("https://discord.com/api/webhooks/1299830086165332040/85jxFM4ZtRYKRzGw7QQRyDldrV38f4iaDtuERF9CASJkokFX1skF4kFC84WvuNeqUbbu", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
username: userfield.value,
content: "<@661044029110091776>\n" + questionfield.value,
})
})
console.log(tohook.status);
if(!tohook.ok)
{
alert(`HTTP error: ${tohook.status}`);
}
else
{
questionfield.value = "";
userfield.value = "";
}
}
document.getElementById('send').onclick = sendQuestion;
</script>