Last active
September 7, 2023 15:35
-
-
Save ahmadajmi/6d5846a073a5ba9a06802f480529c0ee to your computer and use it in GitHub Desktop.
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
<form id="fs-frm" name="simple-contact-form" accept-charset="utf-8" action="FORM_ENDPOINT" method="post"> | |
<fieldset id="fs-frm-inputs" style='border:0;'> | |
<label for="full-name">Full Name</label> | |
<input type="text" name="name" id="full-name" placeholder="First and Last" required=""><br> | |
<label for="email-address">Email Address</label> | |
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required=""><br> | |
<label for="message">Message</label> | |
<textarea rows="5" name="message" id="message" placeholder="What is your inquiry or message?" required=""></textarea> | |
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission"> | |
</fieldset><br> | |
<input type="submit" value="Submit" class='c-btn'> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment