From 6f05307f9501f123ea7b675c9eb87893a0399b4d Mon Sep 17 00:00:00 2001 From: zyqunix Date: Tue, 3 Dec 2024 18:28:05 +0100 Subject: [PATCH] fixed CORS, added non-affiliation and added DATES!!! --- guestbook/fetch.js | 6 +++--- guestbook/index.html | 2 +- guestbook/style.css | 4 ++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/guestbook/fetch.js b/guestbook/fetch.js index d422dc4..8b9da70 100644 --- a/guestbook/fetch.js +++ b/guestbook/fetch.js @@ -1,4 +1,4 @@ -fetch('https://corsproxy.io/?https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3Ds%26i%3Dg26-39906-27') +fetch('https://api.allorigins.win/raw?url=https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3Ds%26i%3Dg26-39906-27') .then(response => response.text()) .then(html => { let parser = new DOMParser(); @@ -6,8 +6,8 @@ fetch('https://corsproxy.io/?https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3D let entries = doc.querySelectorAll('table[bgcolor="#F4F4F4"]'); entries.forEach(entry => { - let dateElement = entry.querySelector('tr > td > font > b'); - let date = dateElement && dateElement.textContent.includes('Date:') ? dateElement.textContent.replace('Date:', '').trim() : 'No date'; + let dateElement = entry.querySelector('tr > td > font'); + let date = dateElement.parentNode.nextSibling.textContent.trim(); let name = entry.querySelector('tr:nth-child(2) td:nth-child(2)') ? entry.querySelector('tr:nth-child(2) td:nth-child(2)').textContent.trim() : 'No name'; let email = entry.querySelector('tr:nth-child(3) td:nth-child(2) a') ? entry.querySelector('tr:nth-child(3) td:nth-child(2) a').textContent.trim() : 'No email'; let web = entry.querySelector('tr:nth-child(4) td:nth-child(2) a') ? entry.querySelector('tr:nth-child(4) td:nth-child(2) a').textContent.trim() : 'No website'; diff --git a/guestbook/index.html b/guestbook/index.html index ef2d847..4933fef 100644 --- a/guestbook/index.html +++ b/guestbook/index.html @@ -10,7 +10,7 @@ -

Guestbook from SmartGB

+

Guestbook from SmartGB

(fentseller.lol is not affiliated with SmartGB)
diff --git a/guestbook/style.css b/guestbook/style.css index 33571d2..974bc6f 100644 --- a/guestbook/style.css +++ b/guestbook/style.css @@ -8,6 +8,10 @@ src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2'); } +h6 { + margin-top: -10px; +} + body { background-color: #505050; font-family: 'Hack', 'JetBrainsMono', monospace;