diff --git a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
index a9d1505b8825d2ecae4f431afc3e2511f145c4a0..6080f8a7725d9723edf2c8e25967eaae4a6fcc07 100644
--- a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
+++ b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
@@ -16,6 +16,7 @@
 {% block content %}
 <div class="col-12 col-xs-12">
     {%if form_title%}<h2>{{form_title}}</h2>{%endif%}
+    {% block form %}
     <form method="post" enctype="multipart/form-data">
         {% csrf_token %}
         {%if form%}
@@ -43,5 +44,6 @@
             <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button>
         </div>
     </form>
+    {% endblock form %}
 </div>
 {% endblock %}
\ No newline at end of file
diff --git a/basetheme_bootstrap/templates/registration/small_form_host.html b/basetheme_bootstrap/templates/registration/small_form_host.html
index 99e49f945106c0fb497b7d1919210c7f129ec1f2..ea38a6ab350f1c255864f69c8eeac9f5f02c7e32 100644
--- a/basetheme_bootstrap/templates/registration/small_form_host.html
+++ b/basetheme_bootstrap/templates/registration/small_form_host.html
@@ -22,6 +22,7 @@
 {%endif%}
 <div class="col-12 col-xs-12 {%if custom_css_width %}{{custom_css_width}}{%else%}{%if not medium_width%}col-sm-10 col-sm-offset-1 offset-sm-1 col-md-8 col-md-offset-2 offset-md-2 col-lg-6 col-lg-offset-3 offset-lg-3 col-xl-4 col-xl-offset-4 offset-xl-4 col-xxl-2 col-xxl-offset-5{%endif%}{%if medium_width%}col-md-10 col-md-offset-1 offset-md-1 col-lg-8 col-lg-offset-2 offset-lg-2 col-xl-6 col-xl-offset-3 offset-xl-3 col-xxl-4 col-xxl-offset-4 col-xxxl-2 col-xxxl-offset-5{%endif%}{%endif%}">
     {%if form_title%}<h2>{{form_title}}</h2>{%endif%}
+    {% block form %}
     <form method="post" enctype="multipart/form-data">
         {% csrf_token %}
         {%if form%}{{ form|crispy }}{%endif%}
@@ -30,5 +31,6 @@
         <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button>
         </div>
     </form>
+    {% endblock form %}
 </div>
 {% endblock %}
\ No newline at end of file