From fce8f847840709fc54c24da1ec4397f3a7cbfb3e Mon Sep 17 00:00:00 2001 From: Nadia Date: Wed, 5 Jul 2017 14:38:51 -0400 Subject: [PATCH 1/3] Update guides.py --- newparp/views/guides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newparp/views/guides.py b/newparp/views/guides.py index da7f25aa..3e09a59a 100644 --- a/newparp/views/guides.py +++ b/newparp/views/guides.py @@ -2,7 +2,7 @@ def user_guide(): - r = requests.get("https://karry.terminallycapricio.us/userguide/duplicateguide.html") + r = requests.get("http://alpacaweb.net/guides/bbcode.html") r.encoding = r.apparent_encoding return r.text, r.status_code From 1f94eb2b5c467f6190273624f0f7bed04d185eaf Mon Sep 17 00:00:00 2001 From: Nadia Date: Wed, 5 Jul 2017 14:42:46 -0400 Subject: [PATCH 2/3] Update guides.py --- newparp/views/guides.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newparp/views/guides.py b/newparp/views/guides.py index 3e09a59a..de7387ee 100644 --- a/newparp/views/guides.py +++ b/newparp/views/guides.py @@ -2,12 +2,12 @@ def user_guide(): - r = requests.get("http://alpacaweb.net/guides/bbcode.html") + r = requests.get("http://alpacaweb.net/guides/userguide.html") r.encoding = r.apparent_encoding return r.text, r.status_code def bbcode_guide(): - r = requests.get("https://karry.terminallycapricio.us/userguide/bbcodeguide.html") + r = requests.get("http://alpacaweb.net/guides/bbcode.html") r.encoding = r.apparent_encoding return r.text, r.status_code From 6d7e8191c9ddc0c60968b65137fcd2253b2101ff Mon Sep 17 00:00:00 2001 From: Nadia Date: Mon, 10 Jul 2017 20:03:32 -0400 Subject: [PATCH 3/3] Added link to resend e-mail A link to resend the verification e-mail was added, along with another reminder to the user to check their spam folder before sending us a ticket. --- newparp/templates/account/user_new.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/newparp/templates/account/user_new.html b/newparp/templates/account/user_new.html index ef56b410..f9a89ff5 100644 --- a/newparp/templates/account/user_new.html +++ b/newparp/templates/account/user_new.html @@ -2,5 +2,11 @@ {% block content: %}

Awaiting activation.

Thank you for signing up! Before you start using MSPARP, please complete this final step to complete your registration. We've sent you an e-mail to confirm your registration. Please click the link provided in the e-mail to activate your account. The e-mail may be in your spam folder so make sure to check there too.

-

If you have not received an e-mail within twenty four hours, contact us through our support ticket system.

+

If you have not received an e-mail within a few hours, click the button below to have a new verification e-mail sent.

+
+ + +

+
+

As a last resort, you can contact us through our support ticket system for assistance, but be sure to check your SPAM FOLDER beforehand in case the e-mail ended up there.

{% endblock %}