Skip to content

Instantly share code, notes, and snippets.

@kaplanmaxe
Created February 18, 2017 13:52
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kaplanmaxe/60c4791f527c77bf45b8f9b22b3f486b to your computer and use it in GitHub Desktop.
PHP ReCAPTCHA Form
<form action="mail.php" method="post" enctype="multipart/form-data">
<input name="sender_name" placeholder="Your Name..."/>
<input name="sender_email" placeholder="Your email..."/>
<textarea placeholder="Your Message..." name="sender_message">
<div class="captcha_wrapper">
<div class="g-recaptcha" data-sitekey="YOUR_KEY"></div>
</div>
<button type="submit" id="send_message">Send Message!</button>
</form>
@BillyCroan
Copy link

BillyCroan commented Apr 30, 2018

Don't you need to close that textarea?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment