17 lines
536 B
PHP
17 lines
536 B
PHP
|
<?php
|
||
|
$extra = <<<TMP
|
||
|
<h1 class="H1-2" style="text-align: center;">
|
||
|
Well, this is embarrassing.
|
||
|
</h1>
|
||
|
|
||
|
<p style="width: 50%; display: block; margin: 0px auto; text-align: center;">
|
||
|
It seems that somehow, there was an error in verifying your account. You can rest assured we'll fix this glitch in the future, but for now you'll just be given a new verification email.
|
||
|
|
||
|
<br /><br />
|
||
|
|
||
|
Sorry about that...
|
||
|
</p>
|
||
|
|
||
|
<img src="../Resources/Images/General/TamakiSad.png" style="margin: 12px auto; display: block;" />
|
||
|
TMP;
|
||
|
?>
|