{% extends 'layouts/base.html' %}

{% block title %}Contact{% endblock %}

{% block content %}

Why not send me an email?

{{ form.hidden_tag() }} {{ form.name(size=50)}}
{{ form.email(size=50)}}
{{ form.message(cols=30, rows=5)}}
{{ form.submit() }} {{ form.recaptcha }}
{% endblock %}