intro_Django/TiendaOnline/gestionPedidos/templates/form_contacto.html

18 lines
446 B
HTML
Raw Normal View History

2020-11-15 15:50:42 -03:00
<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>