From fbb4637a77dc5982b4e694dd31a0aa7d11cec17c Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Thu, 18 Jun 2020 23:17:08 +0200 Subject: initial commit --- templates/registration/base.html | 19 +++++++++++++++++++ templates/registration/login.html | 12 ++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 templates/registration/base.html create mode 100644 templates/registration/login.html (limited to 'templates') diff --git a/templates/registration/base.html b/templates/registration/base.html new file mode 100644 index 0000000..51dad17 --- /dev/null +++ b/templates/registration/base.html @@ -0,0 +1,19 @@ + + + + + + + + {% block title %}Scout Brega{% endblock %} + + + {% block nav %} + {% endblock %} +
+ {% block content %} + {% endblock %} +
+ + + \ No newline at end of file diff --git a/templates/registration/login.html b/templates/registration/login.html new file mode 100644 index 0000000..71880b3 --- /dev/null +++ b/templates/registration/login.html @@ -0,0 +1,12 @@ +{% extends 'registration/base.html' %} + +{% block title %}Login{% endblock %} + +{% block content %} +

Login

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