├── .gitignore ├── README.md ├── directives ├── googlerecaptcha.directive.js └── googlerecaptcha.directive.ts ├── example ├── app.component.js ├── app.component.js.map ├── app.component.ts ├── main.js ├── main.js.map └── main.ts ├── index.html ├── package.json ├── systemjs.config.js ├── tsconfig.json ├── typings.json └── typings ├── browser.d.ts ├── browser └── ambient │ ├── es6-shim │ └── index.d.ts │ └── jasmine │ └── index.d.ts ├── index.d.ts ├── main.d.ts └── main └── ambient ├── es6-shim └── index.d.ts └── jasmine └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ 2 | /node_modules/* 3 | /nbproject/ 4 | /npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Angular2 Google Recaptcha 2 | ========= 3 | 4 | The sources for this package are in (https://github.com/rajan-g/angular2-google-recaptcha) repo. Please file issues and pull requests against that repo. 5 | 6 | ### Live Demo 7 | [Live Demo Site](http://www.angular2modules.com/captcha "Live Demo Site For Letter Recaptcha ") 8 | OR 9 | [Live Demo Site](http://www.angular2modules.com "Live Demo Site For Letter Recaptcha ") 10 | ## Usage 11 | npm install angular2-google-recaptcha 12 | ### 1. Index.html page include following script 13 | 14 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 |
28 |