diff options
author | ahriman <ahriman@falte.red> | 2018-12-03 18:13:02 -0500 |
---|---|---|
committer | ahriman <ahriman@falte.red> | 2018-12-03 18:13:02 -0500 |
commit | f37aa32dd8fc64fe288a7c65afed039c13d5548c (patch) | |
tree | 60db0f80c325fbe67deefecf7623487dd3b80a1a | |
parent | 946ae1ad402fcbb12d526fdddd3856b69c49334c (diff) | |
download | site-f37aa32dd8fc64fe288a7c65afed039c13d5548c.tar.gz |
Changed sign-up confirmation page formatting
-rwxr-xr-x | submit.php | 10 | ||||
-rw-r--r-- | tilde.css | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/submit.php b/submit.php index 6a37e29..f0aaa47 100755 --- a/submit.php +++ b/submit.php @@ -121,18 +121,24 @@ if (isset($_REQUEST["username"]) && isset($_REQUEST["email"])) { $fuzzyfile = fopen("fuzzies.log", "a"); fwrite($fuzzyfile, "$username $email $interest\n"); fclose($fuzzyfile); +?> + +<br /><h3>Thank you for signing up! Please allow up to 24 hours for an account to become active. If you have any questions or issues, please email <a href="mailto:tilde.institute@protonmail.com">tilde.institute@protonmail.com</a>.</h3> + +<?php } else { ?> <div class="alert alert-warning" role="alert"> - <strong>please correct the following errors: </strong> + <br /><br /><h3>Please correct the following errors: </h3><br /> + <h4> <?=$message?> + </h4> </div> <?php } } ?> -<h3>Thank you for signing up! Please allow up to 24 hours for an account to become active. If you have any questions or issues, please email <a href="mailto:tilde.institute@protonmail.com">tilde.institute@protonmail.com</a>.</h3> </div> </div> </body> diff --git a/tilde.css b/tilde.css index 5134dbc..bfdfdf4 100644 --- a/tilde.css +++ b/tilde.css @@ -78,3 +78,7 @@ h3 { font-size: 20px; margin-bottom: 5px; } +h4 { + font-size: 15px; + margin-top: 5px; +} |