diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-08-10 16:42:07 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-08-10 16:42:07 -0600 |
commit | 39f4d2134f332d3d6577f8cf5b3f4b9d4f665c41 (patch) | |
tree | 6521fed114e0227683291d17c7c7d8a14d1040a7 /register.php | |
parent | 5d703ab4ea6e8ead889232ba846596b948bdb051 (diff) |
Change URLs to relative paths
Diffstat (limited to 'register.php')
-rwxr-xr-x | register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/register.php b/register.php index 34e43a0..d7f5fed 100755 --- a/register.php +++ b/register.php @@ -30,7 +30,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') { $form->on_success(function () use ($username, $password) { User::register($username, $password); - echo '<p class="success">Account successfully registered! You can now <a href="/signin.php">sign in</a></p>'; + echo '<p class="success">Account successfully registered! You can now <a href="signin.php">sign in</a></p>'; }); } ?> |