fix(auth): add method attribute to form for proper submission handling (#8705)

Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com>
This commit is contained in:
Prowler Bot
2025-09-11 15:51:24 +02:00
committed by GitHub
parent e9aca866c8
commit cc4d759f47
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -2,6 +2,12 @@
All notable changes to the **Prowler UI** are documented in this file.
## [1.12.1] (Prowler v5.12.1)
### 🐞 Fixed
- POST method on auth form [(#8699)] (https://github.com/prowler-cloud/prowler/pull/8699)
## [1.12.0] (Prowler v5.12.0)
### 🚀 Added
+1
View File
@@ -206,6 +206,7 @@ export const AuthForm = ({
<Form {...form}>
<form
method="post"
className="flex flex-col gap-4"
onSubmit={form.handleSubmit(onSubmit)}
>