From a48a2c7f7ea1ac650ce1817af704bdf5138a9e73 Mon Sep 17 00:00:00 2001 From: Logan Hunt Date: Tue, 3 May 2022 15:57:42 -0600 Subject: Add contact page --- src/routes/contact/index.svelte | 128 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 124 insertions(+), 4 deletions(-) (limited to 'src/routes/contact/index.svelte') diff --git a/src/routes/contact/index.svelte b/src/routes/contact/index.svelte index cbedec9..84d9621 100644 --- a/src/routes/contact/index.svelte +++ b/src/routes/contact/index.svelte @@ -1,8 +1,128 @@ -
-
+ -
+ let captcha; + + function handleSubmit (e) { + e.preventDefault(); + + if (browser) { + const sendToast = toast.push('Sending...', { + duration: 300, + initial: 0, + next: 0.2, + dismissable: false + }); + fetch('/contact/submit', { + method: "POST", + body: JSON.stringify(submission) + }) + .then((x) => x.json()) + .then((x) => { + toast.set(sendToast, { next: 1 }); + + if (x.success) { + toast.push('Success! Reloading...', { + theme: { + '--toastBackground': '#48BB78', + '--toastBarBackground': '#2F855A' + }, + duration: 1000, + onpop: () => { window.location.reload(); }, + }); + } else if (x.error) { + toast.push(x.error, { + theme: { + '--toastBackground': '#F56565', + '--toastBarBackground': '#C53030' + } + }); + } + }) + .catch((err) => console.log(err)); + } + } + function onCaptchaError () { + toast.push('Failed to verify captcha, try again.', { + theme: { + '--toastBackground': '#F56565', + '--toastBarBackground': '#C53030' + } + }); + captcha.reset(); + } + + function onCaptchaSuccess ({ detail: { token } }) { + submission.captchaToken = token; + } + + +
+

Let's get in touch

+
+ +
+

+

+ Call or text +
+ (530) 638 - 3546 +

+
+
+

+

+ Email +
+ jeffer@mistymountainstherapy.com +

+
+
+
+

Or send us a message

+
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ +
+ +
+
+
-- cgit v1.2.3-70-g09d2