| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
-
- View::show_header('Registration Complete');
- ?>
-
- <h2>Register new account</h2>
-
- <p>
- <strong>Congratulations!</strong>
- Your account has been created.
- </p>
-
- <p>
- You can now log into your account using the
- <a href="login.php">login page</a>.
- </p>
-
- <?php View::show_footer();
|