From 619e0e0f5263875b753334483d9b896194e9a61d Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Fri, 19 Jun 2020 15:05:59 +0200 Subject: More data for users --- templates/registration/base.html | 30 ++++++++++++++++-- templates/registration/base_custom.html | 55 +++++++++++++++++++++++++++++++++ templates/registration/base_simple.html | 17 ++++++++++ templates/registration/login.html | 22 ++++++++----- 4 files changed, 114 insertions(+), 10 deletions(-) create mode 100644 templates/registration/base_custom.html create mode 100644 templates/registration/base_simple.html (limited to 'templates/registration') diff --git a/templates/registration/base.html b/templates/registration/base.html index 51dad17..f5a8a80 100644 --- a/templates/registration/base.html +++ b/templates/registration/base.html @@ -8,12 +8,36 @@ {% block title %}Scout Brega{% endblock %} - {% block nav %} - {% endblock %} +
{% block content %} {% endblock %}
- + + \ No newline at end of file diff --git a/templates/registration/base_custom.html b/templates/registration/base_custom.html new file mode 100644 index 0000000..d38be7a --- /dev/null +++ b/templates/registration/base_custom.html @@ -0,0 +1,55 @@ + + + + + + + + {% block title %}Scout Brega{% endblock %} + + + {% block nav %} + {% endblock %} +
+ {% block content %} + {% endblock %} +
+ + + + + \ No newline at end of file diff --git a/templates/registration/base_simple.html b/templates/registration/base_simple.html new file mode 100644 index 0000000..82087bc --- /dev/null +++ b/templates/registration/base_simple.html @@ -0,0 +1,17 @@ + + + + + + + + {% block title %}Scout Brega{% endblock %} + + +
+ {% block content %} + {% endblock %} +
+ + + \ No newline at end of file diff --git a/templates/registration/login.html b/templates/registration/login.html index 71880b3..9459f93 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,12 +1,20 @@ -{% extends 'registration/base.html' %} +{% extends 'registration/base_simple.html' %} {% block title %}Login{% endblock %} {% block content %} -

Login

-
- {% csrf_token %} - {{ form.as_p }} - -
+
+
+
+
+
+ {% csrf_token %} + {{ form.as_p }} +
+ +
+
+
+
+
{% endblock %} \ No newline at end of file -- cgit v1.2.1