gitextract_6idzfx4c/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── reCAPTCHA.AspNetCore/ │ ├── Attributes/ │ │ ├── RecaptchaResponseAttribute.cs │ │ ├── ValidateRecaptchaAttribute.cs │ │ └── ValidateRecaptchaFilter.cs │ ├── CodeDom.cs │ ├── IRecaptchaService.cs │ ├── RecaptchaHelper.cs │ ├── RecaptchaResponse.cs │ ├── RecaptchaService.cs │ ├── RecaptchaServiceCollection.cs │ ├── RecaptchaSettings.cs │ ├── Templates/ │ │ ├── RecaptchaV2Checkbox.cs │ │ ├── RecaptchaV2Checkbox.tt │ │ ├── RecaptchaV2CheckboxModelBinder.cs │ │ ├── RecaptchaV2Invisible.cs │ │ ├── RecaptchaV2Invisible.tt │ │ ├── RecaptchaV2InvisibleModelBinder.cs │ │ ├── RecaptchaV3HiddenInput.cs │ │ ├── RecaptchaV3HiddenInput.tt │ │ └── RecaptchaV3HiddenInputModelBinder.cs │ ├── Versions/ │ │ ├── RecaptchaV2Checkbox.cs │ │ ├── RecaptchaV2Invisible.cs │ │ ├── RecaptchaV3HiddenInput.cs │ │ └── RecaptchaVersion.cs │ └── reCAPTCHA.AspNetCore.csproj ├── reCAPTCHA.AspNetCore.Example/ │ ├── Controllers/ │ │ ├── HomeController.cs │ │ └── SomeAPIControlelr.cs │ ├── Models/ │ │ ├── Contact4Model.cs │ │ ├── ContactModel.cs │ │ ├── ErrorViewModel.cs │ │ └── OtherModel.cs │ ├── Program.cs │ ├── Startup.cs │ ├── Views/ │ │ ├── Home/ │ │ │ ├── Contact.cshtml │ │ │ ├── Contact2.cshtml │ │ │ ├── Contact3.cshtml │ │ │ ├── Contact4.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared/ │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── reCAPTCHA.AspNetCore.Example.csproj │ └── wwwroot/ │ ├── css/ │ │ └── site.css │ ├── js/ │ │ └── site.js │ └── lib/ │ ├── bootstrap/ │ │ ├── LICENSE │ │ └── dist/ │ │ ├── css/ │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap.css │ │ └── js/ │ │ ├── bootstrap.bundle.js │ │ └── bootstrap.js │ ├── jquery/ │ │ ├── LICENSE.txt │ │ └── dist/ │ │ └── jquery.js │ ├── jquery-validation/ │ │ ├── LICENSE.md │ │ └── dist/ │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ └── jquery-validation-unobtrusive/ │ ├── LICENSE.txt │ └── jquery.validate.unobtrusive.js └── reCAPTCHA.AspNetCore.sln