From 2c25eba73a69a0d948edc56aa03c1de0f95ebc3c Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 10 Jun 2022 22:29:26 +0530 Subject: [PATCH] fix: registration template rm autofill, fix urls --- .../templates/accounts/auth/register.html | 28 +++++++------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/accounts/templates/accounts/auth/register.html b/accounts/templates/accounts/auth/register.html index 5a3b17a..4183462 100644 --- a/accounts/templates/accounts/auth/register.html +++ b/accounts/templates/accounts/auth/register.html @@ -1,9 +1,9 @@ -{% extends 'authbase' %} -{% block title_name %}Sign Up {% endblock %} +{% extends 'accounts/auth/base.html' %} {% block login %}

Sign Up

-
- {% include "error_comp" %} + + {% include "common/components/error.html" %} + {% csrf_token %} @@ -55,20 +52,15 @@ required id="confirm_password" type="password" - {% if payload.confirm_password %} - value={{ payload.confirm_password }} - {% endif %} />
- Forgot password?

Already have an account? - Login + Login

-{% include "demo_banner" %} {% endblock %}