From 4b44d21e233e4578d543251a33b2c5aadcbcbe81 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 26 Dec 2020 19:11:35 +0000 Subject: [PATCH] . --- anatomy/templates/registration/login.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 anatomy/templates/registration/login.html diff --git a/anatomy/templates/registration/login.html b/anatomy/templates/registration/login.html new file mode 100644 index 00000000..f23f7ee2 --- /dev/null +++ b/anatomy/templates/registration/login.html @@ -0,0 +1,12 @@ +{% extends '../anatomy/base.html' %} + +{% block title %}Login{% endblock %} + +{% block content %} +

Login

+
+ {% csrf_token %} + {{ form.as_p }} + +
+{% endblock %}