-
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.
now the contact text field is functional and send the emails
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,19 +50,19 @@ export const ContactMe = () => { | |
|
||
</div> | ||
</div> | ||
<form action={() => 'mailto:[email protected]'} className={styles.mailContainer} method="post" enctype="text/plain"> | ||
<form action={"https://formspree.io/f/xoqggrow"} className={styles.mailContainer} method="post" /*enctype="text/plain"*/> | ||
<div className={styles.emailFieldNotButton}> | ||
<div className={styles.emailFieldTextDiv}> | ||
<label htmlFor="name" hidden>Name</label> | ||
<input className={styles.emailFieldText} type="text" placeholder='Name' required/> | ||
<label for="name" hidden>Name</label> | ||
<input className={styles.emailFieldText} type="text" id='name' name='name' placeholder='Name' required/> | ||
</div> | ||
<div className={styles.emailFieldEmailDiv}> | ||
<label htmlFor="email" hidden>Email</label> | ||
<input className={styles.emailFieldEmail} type="email" placeholder='Email' required/> | ||
<label for="email" hidden>Email</label> | ||
<input className={styles.emailFieldEmail} type="email" id='email' name='email' placeholder='Email' required/> | ||
</div> | ||
<div className={styles.emailFieldMessageDiv}> | ||
<label htmlFor="message" hidden>Message</label> | ||
<textarea className={styles.emailFieldMessage} type="text" placeholder='Message' required></textarea> | ||
<label for="message" hidden>Message</label> | ||
<textarea className={styles.emailFieldMessage} type="text" id='message' name='message' placeholder='Message' required></textarea> | ||
</div> | ||
</div> | ||
<div className={styles.emailSubmit}> | ||
|
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