From 0d5738a2bc9dd4f5edf582f7cea3614bcbb44842 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sun, 2 Feb 2025 12:23:02 +0200 Subject: feat!(views): Rename profile to user --- views/user/authenticate.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 views/user/authenticate.php (limited to 'views/user/authenticate.php') diff --git a/views/user/authenticate.php b/views/user/authenticate.php new file mode 100644 index 0000000..e4cf47e --- /dev/null +++ b/views/user/authenticate.php @@ -0,0 +1,24 @@ +Username; +} +catch(Exception $e) { + http_response_code(401); + header('Content-Type: text/plain'); + echo 'Bad token!'; +} + +exit; -- cgit v1.2.3