Skip to content

Instantly share code, notes, and snippets.

@ahmadajmi
Last active September 7, 2023 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadajmi/6d5846a073a5ba9a06802f480529c0ee to your computer and use it in GitHub Desktop.
Save ahmadajmi/6d5846a073a5ba9a06802f480529c0ee to your computer and use it in GitHub Desktop.
<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@email.com" 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