From 690bab2afc23a984461781b59d9902db9e6eb94f Mon Sep 17 00:00:00 2001 From: Daniel Diaz Date: Tue, 25 May 2021 23:08:38 -0500 Subject: [PATCH] Modified User templates --- config/users/templates/users/login.html | 22 ++++++++++++++++++++++ config/users/templates/users/signup.html | 20 ++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/config/users/templates/users/login.html b/config/users/templates/users/login.html index e69de29..ea89e30 100644 --- a/config/users/templates/users/login.html +++ b/config/users/templates/users/login.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} +{% load crispy_forms_tags %} + +{% block body %} + +
+
+
+ {% csrf_token %} + {{ form|crispy }} + +
+
+ {% comment %} Already Registered {% endcomment %} +
+

+ Don't have an account? + Create account +

+
+
+{% endblock body %} diff --git a/config/users/templates/users/signup.html b/config/users/templates/users/signup.html index e69de29..ceb097b 100644 --- a/config/users/templates/users/signup.html +++ b/config/users/templates/users/signup.html @@ -0,0 +1,20 @@ +{% extends 'base.html' %} +{% load crispy_forms_tags %} +{% block body %} +
+
+
+ {% csrf_token %} + {{ form|crispy }} + +
+
+ {% comment %} Already Registered {% endcomment %} +
+

+ Already Registered? + Login +

+
+
+{% endblock body %}