We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ffbc3 commit 6787fa0Copy full SHA for 6787fa0
app/client/src/pages/UserAuth/VerifyUser.tsx
@@ -6,6 +6,7 @@ import * as Sentry from "@sentry/react";
6
import { EMAIL_VERIFICATION_PATH } from "ee/constants/ApiConstants";
7
import { Redirect } from "react-router-dom";
8
import { VerificationErrorType } from "./VerificationError";
9
+import CsrfTokenInput from "pages/UserAuth/CsrfTokenInput";
10
11
const VerifyUser = (
12
props: RouteComponentProps<{
@@ -47,6 +48,7 @@ const VerifyUser = (
47
48
return (
49
<Container title={"Verifying"}>
50
<form action={submitUrl} id="verification-form" method="POST">
51
+ <CsrfTokenInput />
52
{Array.from(queryParams.entries()).map((param) => {
53
54
<input
0 commit comments