example-php-contact-form/templates/contacto.html
Andros Fenollosa fc3784f861 First commit
2021-06-24 15:14:25 +02:00

16 lines
382 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contacto</title>
</head>
<body>
<h1>Nuevo mensaje</h1>
<p><strong>Nombre</strong>: {{ nombre }}</p>
<p><strong>Email</strong>: {{ email }}</p>
<p><strong>Mensaje</strong>: {{ mensaje }}</p>
<hr>
<p><a href="mailto:{{ email }}">Escribirle</a></p>
<p>Gracias</p>
</body>
</html>