21 lines
521 B
HTML
21 lines
521 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Contacto</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Formulario de contacto</h1>
|
||
|
<form action="/contacto/" method="POST">
|
||
|
{% csrf_token %}
|
||
|
|
||
|
<p>Asunto: <input type="text" name="asunto"></p>
|
||
|
<p>Mail : <input type="text" name="mail"></p>
|
||
|
<p>Mensaje: </p>
|
||
|
<p><textarea name="mensaje" rows="15" cols="45"></textarea></p>
|
||
|
|
||
|
<input type="submit" value="Enviar">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|