diff --git a/Home/static/home/assets/css/template.css b/Home/static/home/assets/css/template.css index 60a9607..aff2016 100644 --- a/Home/static/home/assets/css/template.css +++ b/Home/static/home/assets/css/template.css @@ -15,7 +15,7 @@ body{ font-size:12px; color:#787878; -ms-overflow-style:scrollbar; - overflow-x:hidden; + overflow-x:auto; } img{ diff --git a/registration/static/home/css/login.css b/registration/static/home/css/login.css index 9f793eb..14badf2 100644 --- a/registration/static/home/css/login.css +++ b/registration/static/home/css/login.css @@ -7,6 +7,7 @@ body { background: url('../../registration/../home/img/abstract-wallpapers.jpg') transparent fixed; background-repeat: no-repeat; background-size: cover; + -ms-overflow-style:scrollbar; } *, *:before, *:after { @@ -18,7 +19,8 @@ body { position: fixed; top: 0; right: 0; - padding-left: 50px; + overflow: auto; + padding-left: 200px; bottom: 0; left: 0; opacity: 1; @@ -38,22 +40,7 @@ body { max-width: 550px; border-radius: 4px; box-shadow: 0 0 18px rgba(0, 0, 0, 0.2); - margin: 90px auto auto 500px; -} - -.logmod__close { - display: block; - position: absolute; - right: 50%; - background: url("http://imgh.us/close_white.svg") no-repeat scroll 0% 0% transparent; - text-indent: 100%; - white-space: nowrap; - overflow: hidden; - cursor: pointer; - top: -72px; - margin-right: -24px; - width: 48px; - height: 48px; + margin: 90px auto auto auto; } .logmod__container { @@ -74,7 +61,7 @@ body { height: 0; overflow: hidden; opacity: 0; - visibility: hidden; + visibility: auto; } .logmod__tab-wrapper { diff --git a/registration/templates/registration/login.html b/registration/templates/registration/login.html index c633465..c6bbadd 100644 --- a/registration/templates/registration/login.html +++ b/registration/templates/registration/login.html @@ -46,6 +46,7 @@ + @@ -56,24 +57,24 @@ {##} {##} - + {% include 'home/../../../Home/templates/base/side-nav.html' %} -
+
{% if form.errors %} {% for field in form %} {% for error in field.errors %} -
- × - {{ field.label }}: {{ error|escape }} -
+
+ + {{ field.label }}: {{ error|escape }} +
{% endfor %} {% endfor %} {% for error in form.non_field_errors %} -
- × - {{ error|escape }} -
+
+ + {{ error|escape }} +
{% endfor %} {% endif %}
@@ -81,7 +82,6 @@
- Close
  • Login
  • @@ -197,6 +197,12 @@ Show
+
+ +
#} {##} - + {% include 'home/../../../Home/templates/base/side-nav.html' %}
@@ -81,7 +81,6 @@
- Close
  • Sign Up
  • diff --git a/registration/urls.py b/registration/urls.py index dc93300..4caf044 100644 --- a/registration/urls.py +++ b/registration/urls.py @@ -32,4 +32,9 @@ TemplateView.as_view(template_name='registration/error.html'), name="error" ), + url( + r'^remember_me/$', + TemplateView.as_view(template_name='registration/login.html'), + name="remember_me" + ), ]