aboutsummaryrefslogtreecommitdiff
path: root/design/templates/django_registration
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-11-19 11:52:49 -0600
committerluxagraf <sng@luxagraf.net>2018-11-19 11:52:49 -0600
commitd12a5a018faf9cba5a19ebb1bda79ad2ffbbd69f (patch)
tree0cca8c4a344b254c092f823ef514856d66a653b5 /design/templates/django_registration
parent2ef6414abec4e606d0fd96babc849cc2bde2bb38 (diff)
updated requirements, rolled in style changes and js
Diffstat (limited to 'design/templates/django_registration')
-rw-r--r--design/templates/django_registration/logged_out.html9
-rw-r--r--design/templates/django_registration/registration_form.html7
2 files changed, 16 insertions, 0 deletions
diff --git a/design/templates/django_registration/logged_out.html b/design/templates/django_registration/logged_out.html
new file mode 100644
index 0000000..cccb58b
--- /dev/null
+++ b/design/templates/django_registration/logged_out.html
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+
+{% block title %}Logged Out{% endblock %}
+
+{% block primary %}
+<h2>You're logged out</h2>
+<h4>Thanks for visiting the site today</h4>
+<a href="{%url 'login'%}">Login again</a>
+{% endblock %}
diff --git a/design/templates/django_registration/registration_form.html b/design/templates/django_registration/registration_form.html
index 54e01c5..8573918 100644
--- a/design/templates/django_registration/registration_form.html
+++ b/design/templates/django_registration/registration_form.html
@@ -15,3 +15,10 @@
</form>
<p class="text-muted">Already have an account? <a href="{% url 'login' %}">Log in</a>.</p>
{% endblock %}
+{% block extra %}
+<div class="overlay-content" id="js-overlay-content" style="display: none;">
+ {% include 'lib/login.html' with form=login_form site=site %}
+ {{login_form}}
+</div>
+{{site.name}}
+{%endblock%}