aboutsummaryrefslogtreecommitdiff
path: root/app/templates/result.html
blob: ca7db1c0a051f61e5b36f5002a74b06e163dd09a (plain)
1
2
3
4
5
6
7
{% extends 'base.html' %}

{% block main %}
    <h2>Successful Form Submission</h2>
    {% include 'flash_messages.html' %}
    <p>My name is <strong>{{ firstname + ' ' + lastname }}</strong> and my email address is <strong>{{ email }}</strong>.</p>
{% endblock %}