diff --git a/BeauFindlay/src/BeauFindlay.Client/Pages/Contact.razor b/BeauFindlay/src/BeauFindlay.Client/Pages/Contact.razor index 88ee399..5334ecf 100644 --- a/BeauFindlay/src/BeauFindlay.Client/Pages/Contact.razor +++ b/BeauFindlay/src/BeauFindlay.Client/Pages/Contact.razor @@ -7,54 +7,56 @@

Contact

- +

If you think I can help with your project or you'd just like to talk tech, send me a message!

-
- - - -
-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
-
- This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply. -
-
- -
- -
-
- -@if (isSubmitted) +@if (!isSubmitted) { -
+
+ + + +
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+
+ This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply. +
+
+ +
+ +
+
+} +else +{ +
@if (sendEmailSuccess) { @@ -95,7 +97,7 @@ private async Task HandleValidSubmit() { isSubmitting = true; - + var recaptchaResponse = await JSRuntime.InvokeAsync("executeRecaptcha"); if (string.IsNullOrWhiteSpace(recaptchaResponse)) @@ -114,7 +116,7 @@ sendEmailSuccess = response.IsSuccessStatusCode; } - + isSubmitting = false; isSubmitted = true; } diff --git a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css index 96ac68a..28b6163 100644 --- a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css +++ b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css @@ -803,6 +803,26 @@ video { padding-bottom: 2rem; } +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.px-8 { + padding-left: 2rem; + padding-right: 2rem; +} + +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} + +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} + .pb-2 { padding-bottom: 0.5rem; }