File: captcha_page.html

package info (click to toggle)
python-pycrowdsec 0.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: python: 879; sh: 6; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>

<head>
    <title>reCAPTCHA demo: Simple page</title>
    <script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>

<body>
    <form action="{% url 'captcha_view' %}" method="POST">
        {% csrf_token %}
        <div class="g-recaptcha" data-sitekey="{{public_key}}"></div>
        <br />
        <input type="submit" value="Submit">
    </form>
</body>

</html>