web_programming.recaptcha_verification ====================================== .. py:module:: web_programming.recaptcha_verification .. autoapi-nested-parse:: Recaptcha is a free captcha service offered by Google in order to secure websites and forms. At https://www.google.com/recaptcha/admin/create you can create new recaptcha keys and see the keys that your have already created. * Keep in mind that recaptcha doesn't work with localhost When you create a recaptcha key, your will get two separate keys: ClientKey & SecretKey. ClientKey should be kept in your site's front end SecretKey should be kept in your site's back end # An example HTML login form with recaptcha tag is shown below

Log in

{% csrf_token %}
Below a Django function for the views.py file contains a login form for demonstrating recaptcha verification. Functions --------- .. autoapisummary:: web_programming.recaptcha_verification.login_using_recaptcha Module Contents --------------- .. py:function:: login_using_recaptcha(request)