From 098564e333f57f48e25104f22f9cb7bff3d99123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Najborowski?= Date: Sun, 30 Jan 2022 21:43:10 +0100 Subject: [PATCH] add link to log in view when on sign up view and vice-versa --- MUOR/templates/registration/login.html | 15 +++++++++------ MUOR/templates/registration/signup.html | 15 +++++++++------ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/MUOR/templates/registration/login.html b/MUOR/templates/registration/login.html index ab15b4ba6..60e4b0a7c 100644 --- a/MUOR/templates/registration/login.html +++ b/MUOR/templates/registration/login.html @@ -4,10 +4,13 @@ {% block title %}Login{% endblock %} {% block content %} -

Log In

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

Log In

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

+ New to MultiUserOpenRefine? + Create an account. +
{% endblock %} \ No newline at end of file diff --git a/MUOR/templates/registration/signup.html b/MUOR/templates/registration/signup.html index de6856aca..2d28c734e 100644 --- a/MUOR/templates/registration/signup.html +++ b/MUOR/templates/registration/signup.html @@ -4,10 +4,13 @@ {% block title %}Sign Up{% endblock %} {% block content %} -

Sign Up

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

Sign Up

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

+ Already have an account? + Back to login. +
{% endblock %} \ No newline at end of file