-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmostrar-datos-contacto.html
35 lines (31 loc) · 1.11 KB
/
mostrar-datos-contacto.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mostrar Datos</title>
</head>
<body>
<h1>Datos del Formulario enviados correctamente</h1>
<script>
document.addEventListener("DOMContentLoaded", function () {
const params = new URLSearchParams(location.search);
const nombre = params.get("nombre");
const email = params.get("email");
const telefono = params.get("telefono");
const preferencia = params.get("preferencia");
const mensaje = params.get("mensaje");
const datosContainer = document.createElement("div");
datosContainer.innerHTML = `
<p>Nombre: ${nombre}</p>
<p>Email: ${email}</p>
<p>Teléfono: ${telefono}</p>
<p>Preferencia: ${preferencia}</p>
<p>Mensaje: ${mensaje}</p>
`;
document.body.appendChild(datosContainer);
});
</script>
<a href="index.html">Volver al inicio</a>
</body>
</html>