17 lines
449 B
HTML

{% extends "base.html" %}
{% block content %}
<form method="post" enctype='multipart/form-data'>
<table>
{{ form.as_table }}
</table>
<input type="submit" id="submit" value="submit">
</form>
<h2>Got</h2>
{% if subject %}
<p><strong>subject:</strong><br>{{ subject}}</p>
<p><strong>message:</strong><br>{{ message }}</p>
<p><strong>size:</strong><br>{{ size }}</p>
{% endif %}
{% endblock content %}