summaryrefslogtreecommitdiff
path: root/thank_you.php
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2014-05-22 23:07:12 -0500
committerwushin <pasekei@gmail.com>2014-05-22 23:24:49 -0500
commit88fc035963ec57beb1da12b2f32b4c30e0946e2a (patch)
treeccf01e8b86ae1b46c832fba41189f4cbc8373924 /thank_you.php
parent41572c3899c716d03f08af82f536b22858ee0646 (diff)
downloadwebsite-88fc035963ec57beb1da12b2f32b4c30e0946e2a.tar.gz
website-88fc035963ec57beb1da12b2f32b4c30e0946e2a.tar.bz2
website-88fc035963ec57beb1da12b2f32b4c30e0946e2a.tar.xz
website-88fc035963ec57beb1da12b2f32b4c30e0946e2a.zip
Fix Account Creations Always Asking!
Sitemap - Robots GA adjustments Index - News-feed GA adjustments Added Email template (Text/Html) Shrunk some margins to reduce empty space Moved Server Status Up on the list Added "Support (IRC)" to aide new players Removed Duplicate Registration
Diffstat (limited to 'thank_you.php')
-rw-r--r--thank_you.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/thank_you.php b/thank_you.php
new file mode 100644
index 0000000..67c8ffe
--- /dev/null
+++ b/thank_you.php
@@ -0,0 +1,11 @@
+<?php
+include('includes/common.php');
+if (preg_match('/'.$_SERVER['SERVER_NAME'].'/',$_SERVER['HTTP_REFERER']) && preg_match('/registration.php/', $_SERVER['HTTP_REFERER'])) {
+ placeHeader("Account Created");
+ echo "<p>Your account was scheduled for creation! In a few minutes you should receive an email with verification of your new account.</p>
+<p><em>If the account doesn't work after five minutes, please ask for help on the <a href='https://forums.themanaworld.org/viewforum.php?f=3'>Forums</a> or <a href='https://webchat.freenode.net/?channels=#themanaworld'>Support (IRC)</a>.</em></p>";
+ placeFooter();
+} else {
+ header("Location: /registration.php");
+}
+?>