diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-24 23:39:05 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-24 23:39:05 +0530 |
commit | e52c18a09cabd374093b06ef0f521767cd228ba6 (patch) | |
tree | 6548d357ba45e75334da8c225a0c6cd5f77f0850 /app/templates/result.html |
make it better
Diffstat (limited to 'app/templates/result.html')
-rw-r--r-- | app/templates/result.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/templates/result.html b/app/templates/result.html new file mode 100644 index 0000000..ca7db1c --- /dev/null +++ b/app/templates/result.html @@ -0,0 +1,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 %}
\ No newline at end of file |