diff --git a/basetheme_bootstrap/templates/registration/small_form_host.html b/basetheme_bootstrap/templates/registration/small_form_host.html
index fb5df9f1e3fe92de709b6a1a756a4d900a95f419..f682ac7d1269a4f2d6db08fc2a7c23c2a1a4add7 100644
--- a/basetheme_bootstrap/templates/registration/small_form_host.html
+++ b/basetheme_bootstrap/templates/registration/small_form_host.html
@@ -13,6 +13,16 @@
 {% endfor%}
 {% endblock %}
 
+{% block extra_css %}
+{{block.super}}
+{% if extra_css_file %}
+<link rel="stylesheet" href="{% sstatic extra_css_file %}"/>
+{% endif%}
+{% for extra_css_file in extra_css_files %}
+<link rel="stylesheet" href="{% sstatic extra_css_file %}"/>
+{% endfor%}
+{% endblock %}
+
 {% block title %}{{ title }}{% endblock %}
 {% block page_title %}{{ page_title|default:title }}{% endblock %}
 
diff --git a/setup.py b/setup.py
index 7a608e87ebe48cef7c9f37090f08d5267351fc30..50745e971aa46046b514eeccc97a15f333c740b2 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ readme = open('README.rst').read()
 
 setup(
     name='django-basetheme-bootstrap',
-    version='1.2',
+    version='1.3',
     description='Django Basetheme Bootstrap',
     long_description=readme,
     author='Bryan Brancotte',