From a43ed866b837cbcbcddbe1bd73762d6453bf2068 Mon Sep 17 00:00:00 2001 From: JhumanJ Date: Mon, 14 Apr 2025 10:32:37 +0200 Subject: [PATCH] Add POST method to LoginForm and RegisterForm components - Updated the `LoginForm.vue` and `RegisterForm.vue` components to include the `method="POST"` attribute in their form elements. This change ensures that form submissions are handled correctly as POST requests, aligning with standard web practices for user authentication and registration. These modifications aim to enhance the functionality of the authentication forms by explicitly defining the request method for form submissions. --- client/components/pages/auth/components/LoginForm.vue | 1 + client/components/pages/auth/components/RegisterForm.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/client/components/pages/auth/components/LoginForm.vue b/client/components/pages/auth/components/LoginForm.vue index 004211d6..f404d8ae 100644 --- a/client/components/pages/auth/components/LoginForm.vue +++ b/client/components/pages/auth/components/LoginForm.vue @@ -6,6 +6,7 @@ />