Angular.JS wrapper for Google's No CAPTCHA reCAPTCHA. See demo at http://codedistillery.github.io/angular-no-captcha/
-
Sign up for an API key at https://www.google.com/recaptcha/admin#createsite.
-
Check documentation for No CAPTCHA reCAPTCHA at https://developers.google.com/recaptcha/intro.
-
Install package via bower and save it as a project dependency
$ bower install angular-no-captcha --save
-
Include noCAPTCHA script
<script src="src/angular-no-captcha.js"></script>
-
Add module dependency to your angular module
var app = angular.module('myApp', ['noCAPTCHA']);
-
(Optional step) Set default options for noCAPTCHA
angular.module('myApp') .config(['noCAPTCHAProvider', function (noCaptchaProvider) { noCaptchaProvider.setSiteKey('<your site key>'); noCaptchaProvider.setTheme('dark'); } ]);
-
Finally add noCaptcha element to your form
<no-captcha g-recaptcha-response="gRecaptchaResponse" theme='light' control="noCaptchaControl" site-key="<your site key>"> </no-captcha>
Param | Type | Details |
---|---|---|
g-recaptcha-response | Expression | Bind reCAPTCHA response token |
theme | String {light | dark} | Optional. The color theme of the widget. Can be set also in config |
site-key | String | Optional. Your site key. Can be set also in config |
control | Expression | Optional. Object where reset-function will be injected |