implement table reservation form component with reCAPTCHA and email submission integration

This commit is contained in:
Alaguraj0361 2026-04-04 00:16:46 +05:30
parent c1d3979a0c
commit afde9630ef
2 changed files with 2 additions and 2 deletions

View File

@ -301,7 +301,7 @@ export default function ContactContent() {
<div className={styles.recaptchaWrapper}> <div className={styles.recaptchaWrapper}>
<ReCAPTCHA <ReCAPTCHA
sitekey="6Lc5TqUsAAAAAP2B5EFeDxFRqykh6tJaqO922HjP" sitekey="6LcvXKUsAAAAAJ9VaMymrefWB3QLKRIBU9NGkw7a"
onChange={handleCaptchaChange} onChange={handleCaptchaChange}
/> />
{formErrors.captcha && <small className={styles.errorText}>{formErrors.captcha}</small>} {formErrors.captcha && <small className={styles.errorText}>{formErrors.captcha}</small>}

View File

@ -236,7 +236,7 @@ export default function BookTable() {
<div className={styles.recaptchaWrapper}> <div className={styles.recaptchaWrapper}>
<ReCAPTCHA <ReCAPTCHA
sitekey="6Lc5TqUsAAAAAP2B5EFeDxFRqykh6tJaqO922HjP" sitekey="6LcvXKUsAAAAAJ9VaMymrefWB3QLKRIBU9NGkw7a"
onChange={handleCaptchaChange} onChange={handleCaptchaChange}
/> />
{formErrors.captcha && <small className={styles.errorText}>{formErrors.captcha}</small>} {formErrors.captcha && <small className={styles.errorText}>{formErrors.captcha}</small>}