Browse Source

Form landing content (#114)

* Form landing in content_body block

* Fix spelling

* Reduce imports

* Changing to h2 since there would now likely be an h1 on the page
Vince Salvino 6 years ago
parent
commit
97411cd6ae
1 changed files with 5 additions and 5 deletions
  1. 5 5
      coderedcms/templates/coderedcms/pages/form_page_landing.html

+ 5 - 5
coderedcms/templates/coderedcms/pages/form_page_landing.html

@@ -1,12 +1,12 @@
 {% extends "coderedcms/pages/web_page.html" %}
 
-{% load i18n wagtailcore_tags coderedcms_tags bootstrap4 %}
+{% load i18n %}
 
-{% block content %}
+{% block content_body %}
 
-<div class="container mt-5">
-    <h1>{% trans 'Thank You' %}</h1>
-    <p>{% trans 'We have successfully recieved your submission for:' %} {{self.title}}.</p>
+<div class="container my-5">
+    <h2>{% trans 'Thank You' %}</h2>
+    <p>{% trans 'We have successfully received your submission.' %}</p>
 </div>
 
 {% endblock %}