Oops! Something went wrong while submitting the form.
fetch('https://api.ipify.org?format=json')
.then(response => response.json()) // Convertir la respuesta a JSON
.then(data => {
console.log('Tu IP pública es:', data.ip);
// Mostrar la IP en algún elemento del DOM
document.getElementById('user-ip').textContent = data.ip;
})
.catch(error => console.error('Error al obtener la IP:', error));
//--------------------------------------------------