diff --git a/sifrovacka/templates/django_registration/registration_complete.html b/sifrovacka/templates/django_registration/registration_complete.html
index 6fea9882817e7bafb02f1302d37acda11f5e9baf..3d9c7f0b28bde8738e14ed1dad46e95ab5bddc75 100644
--- a/sifrovacka/templates/django_registration/registration_complete.html
+++ b/sifrovacka/templates/django_registration/registration_complete.html
@@ -1,10 +1,16 @@
 {% extends "django_registration/registration_base.html" %}
 {% load i18n %}
 
+{% block title %} Registrace dokonÄŤena {% endblock %}
+{% comment %}
 {% block title %}{% trans "Activation email sent" %}{% endblock %}
+{% endcomment %}
 
 {% block content %}
+<p> Registrace byla dokonÄŤena. </p>
+{% comment %}
 <p>{% trans "Please check your email to complete the registration process." %}</p>
+{% endcomment %}
 {% endblock %}
 
 
diff --git a/sifrovacka/templates/home.html b/sifrovacka/templates/home.html
index 550c295904797ba6826e252ba50368109fdb05ec..cb3cd74294edd431edcf30a55aaabdd457f42c0b 100644
--- a/sifrovacka/templates/home.html
+++ b/sifrovacka/templates/home.html
@@ -1,28 +1,30 @@
 {% extends "base.html" %}
-{% if request.user.is_authenticated %}
- {% block content %}
-  {% if error_alreadysigned %}
-   <div class="alert alert--yellow-400">
-   <span> K Šifrovačce jste již přihlášeni  </span>
-   </div>
-  {% endif %}
-  <ul>
-   <p> <b>Dostupné šifrovačky: </b> <a href={% url 'index' %}> Zde </a></p>
-{% comment %}
-{% endcomment %}
-
-  {% if participation_sifrovacky_list %}
+{% block content %}
+ {% if request.user.is_authenticated %}
+  <div class="container container--default">
+   {% if error_alreadysigned %}
+    <div class="alert alert--yellow-400">
+    <span> K Šifrovačce jste již přihlášeni  </span>
+    </div>
+   {% endif %}
    <ul>
-   <h1 class="head-alt-sm">Přihlášené šifrovačky </h1>
-    {% for sifrovacka in participation_sifrovacky_list %}
-     <li><a href={% url 'detail' sifrovacka.sifrovacka_id %}>{{ sifrovacka }}</a></li>
-    {% endfor %}
-   </ul>
-  {% else %}
-   <p>Žádné šifrovačky nemáte aktivní.</p>
-  {% endif %}
- {% endblock %}
-{{% endif %}
+    <p> <b>Dostupné šifrovačky: </b> <a href={% url 'index' %}> Zde </a></p>
+ {% comment %}
+ {% endcomment %}
+ 
+   {% if participation_sifrovacky_list %}
+    <ul>
+    <h1 class="head-alt-sm">Přihlášené šifrovačky </h1>
+     {% for sifrovacka in participation_sifrovacky_list %}
+      <li><a href={% url 'detail' sifrovacka.sifrovacka_id %}>{{ sifrovacka }}</a></li>
+     {% endfor %}
+    </ul>
+   {% else %}
+    <p>Žádné šifrovačky nemáte aktivní.</p>
+   {% endif %}
+  </div>
+ {% endif %}
+{% endblock %}
 
 {% comment %}
 {% block content %}