summaryrefslogtreecommitdiff
path: root/thank_you.php
diff options
context:
space:
mode:
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");
+}
+?>