embed recaptcha in html

Solutions on MaxInterview for embed recaptcha in html by the best coders in the world

showing results for - "embed recaptcha in html"
Alex
22 Sep 2018
1<!DOCTYPE html>
2<html lang="en">
3  <head>
4    <title>How to Integrate Google “No CAPTCHA reCAPTCHA” on Your Website</title>
5  </head>
6 
7  <body>
8 
9    <form action="" method="post">
10 
11      <label for="name">Name:</label>
12      <input name="name" required><br />
13 
14      <label for="email">Email:</label>
15      <input name="email" type="email" required><br />
16 
17      <div class="g-recaptcha" data-sitekey="6LcePAATAAAAAGPRWgx90814DTjgt5sXnNbV5WaW"></div>
18 
19      <input type="submit" value="Submit" />
20 
21    </form>
22 
23    <!--js-->
24    <script src='https://www.google.com/recaptcha/api.js'></script>
25 
26  </body>
27</html>
28
Sarah
21 Jun 2020
1<script src='https://www.google.com/recaptcha/api.js'></script>
2
Irene
20 Nov 2019
1<div class="g-recaptcha" data-sitekey="6LcePAATAAAAAGPRWgx90814DTjgt5sXnNbV5WaW"></div>
2