From a8fdedfe1b007fed47a48b3c2148770e0904d13a Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Fri, 8 Mar 2024 17:16:07 -0800 Subject: [PATCH] fix login url for final redirect --- templates/index.html | 20 +------------------- templates/signup_error.html | 2 +- templates/signup_success.html | 5 +++-- 3 files changed, 5 insertions(+), 22 deletions(-) diff --git a/templates/index.html b/templates/index.html index 75d8db2..7aa2dd2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,26 +1,8 @@ {% extends "base.html" %} -{% block title %}Welcome to What 2 Watch, Bish{% endblock %} +{% block title %}Welcome to the Kitten Collective!{% endblock %} {% block content %} -

Welcome to What 2 Watch

- -{% match user %} -{% when Some with (usr) %} -

- Hello, {{ usr.username }}! It's nice to see you. Let's get watchin'! -

-
-

-

- -
-

-{% when None %} -

- Heya, why don't you log in or sign up? -

-{% endmatch %} {% endblock %} diff --git a/templates/signup_error.html b/templates/signup_error.html index 610bd3f..e33dab6 100644 --- a/templates/signup_error.html +++ b/templates/signup_error.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Dang, Bish{% endblock %} +{% block title %}Dang!{% endblock %} {% block content %} {% block header %}{% endblock %} diff --git a/templates/signup_success.html b/templates/signup_success.html index 9087032..9d947c1 100644 --- a/templates/signup_success.html +++ b/templates/signup_success.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Thanks for Signing Up for What 2 Watch, Bish{% endblock %} +{% block title %}Thanks for Signing up for the Kitten Collective!{% endblock %} {% block content %} {% block header %}{% endblock %} @@ -13,7 +13,8 @@

-

Now, head on over to the login page and git going! +

Now, head on over to the login page and git + going!

{% endblock %}