diff options
-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; +} |