Skip to content

Commit

Permalink
Fix form generation
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Feb 3, 2025
1 parent 2237370 commit 8827e3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/Form/ContactForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ContactForm = ({ action }: Contact) => {
const { t } = useTranslation(['common']);

return (
<Form action={action} formMethod="POST" className="text-base text-black font-semibold">
<form action={action} method="POST" className="text-base text-black font-semibold">
{/* To Track referrals , place the referrer name within the " " in the above hidden input field */}
<input type="hidden" name="zf_referrer_name" value="mmfr-website"/>
{/* To redirect to a specific page after record submission , place the respective url within the " " in the above hidden input field */}
Expand Down Expand Up @@ -70,7 +70,7 @@ const ContactForm = ({ action }: Contact) => {
>
<span className="font-semibold">{t('common:send')}</span>
</button>
</Form>
</form>
);
};

Expand Down

0 comments on commit 8827e3a

Please sign in to comment.