First commit

This commit is contained in:
Andros Fenollosa
2021-06-24 15:14:25 +02:00
commit fc3784f861
7 changed files with 304 additions and 0 deletions

16
templates/contacto.html Normal file
View File

@ -0,0 +1,16 @@
<!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>