1. This shit.
2. Your shit.
3. Their shit.
4. Half of this shit.
5. Any of this shit.
6. Anything that doesn't have shit to do with us.
async function getIP() {
try {
const response = await fetch('https://api.ipify.org?format=json');
const data = await response.json();
document.getElementById('ip').innerText = `Your IP Address has been reported succesfully: ${data.ip}`;
} catch (error) {
console.error('Error fetching IP address:', error);
}
}
// Call the function when the page loads
window.onload = getIP;