Curie-Web/app/templates/result.html

7 lines
264 B
HTML
Raw Normal View History

2020-06-24 19:09:05 +01:00
{% 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 %}