7 lines
264 B
HTML
7 lines
264 B
HTML
|
{% 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 %}
|