-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating form to redirect to thank you page when complete
- Loading branch information
Showing
10 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as React from "react"; | ||
import Header from "../components/header"; | ||
import Footer from "../components/footer"; | ||
import Volunteer from "../components/volunteer"; | ||
|
||
|
||
const Thankyou = () => { | ||
return ( | ||
<main> | ||
<Header /> | ||
<div className="container thank-you"> | ||
<h1>Thank You for reaching out to us</h1> | ||
<p>We will get back to you shortly.</p> | ||
</div> | ||
<section className="volunteers"> | ||
<Volunteer /> | ||
</section> | ||
<Footer /> | ||
|
||
</main> | ||
) | ||
} | ||
|
||
export default Thankyou | ||
|
||
export const Head = () => <title>Thank You</title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as React from "react"; | ||
import Header from "../components/fr/header"; | ||
import Footer from "../components/fr/footer"; | ||
import Volunteer from "../components/fr/volunteer"; | ||
|
||
|
||
const Thankyou = () => { | ||
return ( | ||
<main> | ||
<Header /> | ||
<div className="container thank-you"> | ||
<h1>Merci de nous avoir contactés</h1> | ||
<p>Nous vous répondrons sous peu.</p> | ||
</div> | ||
<section className="volunteers"> | ||
<Volunteer /> | ||
</section> | ||
<Footer /> | ||
|
||
</main> | ||
) | ||
} | ||
|
||
export default Thankyou | ||
|
||
export const Head = () => <title>Merci</title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,4 +111,7 @@ | |
button { | ||
margin-left: 0 !important; | ||
} | ||
} | ||
.thank-you { | ||
padding-bottom: 40px; | ||
} |