aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/Controllers/AuthController.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/Controllers/AuthController.php')
-rw-r--r--src/app/Controllers/AuthController.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/app/Controllers/AuthController.php b/src/app/Controllers/AuthController.php
index ae94295..aad40be 100644
--- a/src/app/Controllers/AuthController.php
+++ b/src/app/Controllers/AuthController.php
@@ -19,8 +19,6 @@ class AuthController
$this->user = new User();
}
- // ── Registration ──
-
public function registerForm(): void
{
$content = __DIR__ . '/../Views/auth/register.php';
@@ -79,8 +77,6 @@ class AuthController
header('Location: /login');
}
- // ── Email verification ──
-
public function verify(): void
{
$token = $_GET['token'] ?? '';
@@ -97,8 +93,6 @@ class AuthController
header('Location: /login');
}
- // ── Login / Logout ──
-
public function loginForm(): void
{
$content = __DIR__ . '/../Views/auth/login.php';
@@ -146,8 +140,6 @@ class AuthController
header('Location: /');
}
- // ── Password reset ──
-
public function forgotPasswordForm(): void
{
$content = __DIR__ . '/../Views/auth/forgot-password.php';