diff --git a/tools/WebhookYeet/index.html b/tools/WebhookYeet/index.html
index 56a844a..1d9a0c3 100644
--- a/tools/WebhookYeet/index.html
+++ b/tools/WebhookYeet/index.html
@@ -13,7 +13,10 @@
fetch(url, { method: 'DELETE' })
.then((response) => {
if(response.ok) {
- output.innerHTML = 'Delete successful';
+ output.innerHTML = 'Succesfully yeeted';
+ }
+ else {
+ output.innerHTML = 'Failed to yeet';
}
})
diff --git a/tools/percentage-calc/index.html b/tools/percentage-calc/index.html
index 23a79c0..ecf1040 100644
--- a/tools/percentage-calc/index.html
+++ b/tools/percentage-calc/index.html
@@ -4,8 +4,8 @@
}
function docalc(){
- const num2 = document.getElementById("input2");
- const num1 = document.getElementById("input1");
+ const num2 = document.getElementById("input2").value;
+ const num1 = document.getElementById("input1").value;
var calcu = percentage(num1, num2);
//percentage(num1, num2)