From dcf849257e7b2e7d20e6740eee2b1ba6aebaa548 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Mon, 27 Mar 2023 21:44:30 +0300 Subject: [PATCH] Added `login` file --- templates/registration/login.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/registration/login.html diff --git a/templates/registration/login.html b/templates/registration/login.html new file mode 100644 index 0000000..e1ca078 --- /dev/null +++ b/templates/registration/login.html @@ -0,0 +1,13 @@ +{% extends "layout.html" %} +{% load static %} +{% block title %}{{ title }}{% endblock %} +{% block meta %}{% endblock %} +{% block content %} +
+ {% csrf_token %}{{ form }} +

+ Don't have an account? Create one Here! +

+ +
+{% endblock %}