18 lines
446 B
HTML
18 lines
446 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Contacto</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Formulario de contacto</h1>
|
||
|
{% if forms.errors %}
|
||
|
<p style="color:red;"> Por favor revisa este campo</p>
|
||
|
{% endif %}
|
||
|
<form action="" method="POST">{% csrf_token %}
|
||
|
<table>
|
||
|
{{ form.as_table}}
|
||
|
</table>
|
||
|
<input type="submit" value="Enviar">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|