{"id":21328416,"url":"https://github.com/wiredviews/xperience-hcaptcha","last_synced_at":"2026-03-09T08:02:29.635Z","repository":{"id":59024337,"uuid":"528886324","full_name":"wiredviews/xperience-hcaptcha","owner":"wiredviews","description":"Kentico Xperience hCaptcha Form Component","archived":false,"fork":false,"pushed_at":"2023-01-26T17:20:58.000Z","size":356,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-16T20:10:13.868Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wiredviews.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-25T14:26:15.000Z","updated_at":"2023-02-26T01:31:59.000Z","dependencies_parsed_at":"2023-02-15T09:10:42.004Z","dependency_job_id":null,"html_url":"https://github.com/wiredviews/xperience-hcaptcha","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wiredviews/xperience-hcaptcha","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiredviews%2Fxperience-hcaptcha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiredviews%2Fxperience-hcaptcha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiredviews%2Fxperience-hcaptcha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiredviews%2Fxperience-hcaptcha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiredviews","download_url":"https://codeload.github.com/wiredviews/xperience-hcaptcha/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiredviews%2Fxperience-hcaptcha/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30287447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-21T21:28:52.103Z","updated_at":"2026-03-09T08:02:29.619Z","avatar_url":"https://github.com/wiredviews.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xperience hCaptcha\n\n[![GitHub Actions CI: Build](https://github.com/wiredviews/xperience-hcaptcha/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/wiredviews/xperience-hcaptcha/actions/workflows/ci.yml)\n\n[![Publish Packages to NuGet](https://github.com/wiredviews/xperience-hcaptcha/actions/workflows/publish.yml/badge.svg?branch=main)](https://github.com/wiredviews/xperience-hcaptcha/actions/workflows/publish.yml)\n\n## Packages\n\n### XperienceCommunity.HCaptcha\n\n[![NuGet Package](https://img.shields.io/nuget/v/XperienceCommunity.HCaptcha.svg)](https://www.nuget.org/packages/XperienceCommunity.HCaptcha)\n\nKentico Xperience 13.0.66 (or higher) ASP.NET Core 6.0+ Form Component that adds [hCaptcha](https://www.hcaptcha.com/) captcha validation to Form Builder forms.\n\n### XperienceCommunity.HCaptcha.CMS\n\n[![NuGet Package](https://img.shields.io/nuget/v/XperienceCommunity.HCaptcha.CMS.svg)](https://www.nuget.org/packages/XperienceCommunity.HCaptcha.CMS)\n\nKentico Xperience 13.0.66 (or higher) CMS installation module that adds [hCaptcha](https://www.hcaptcha.com/) settings keys to the Settings application.\n\n## How to Use?\n\n1. Install the `XperienceCommunity.HCaptcha` NuGet package in your ASP.NET Core 6.0+ application:\n\n   ```bash\n   dotnet add package XperienceCommunity.HCaptcha\n   ```\n\n1. Install the `XperienceCommunity.HCaptcha.CMS` NuGet package in your CMS application:\n\n   ```bash\n   dotnet add package XperienceCommunity.HCaptcha.CMS\n   ```\n\n## Usage\n\n1. Add a registration for the `HCaptchaInstallerModule` in your `CMSApp` project:\n\n   ```csharp\n   using XperienceCommunity.HCaptcha.CMS\n\n   [assembly: RegisterModule(typeof(HCaptchaInstallerModule))]\n\n   namespace CMSApp.Configuration\n   {\n      public class DependencyRegistrations\n      {\n\n      }\n   }\n   ```\n\n   On application startup, custom CMS settings will be added to the Settings application\n\n1. Set the settings keys in the CMS Settings application with the values provided in your [hCaptcha Dashboard](https://dashboard.hcaptcha.com/).\n\n   \u003cimg src=\"./images/cms-settings-application.jpg\" width=\"600px\" alt=\"CMS Settings application hCaptcha fields\" /\u003e\n\n1. Add the hCaptcha Form Component to a Form Builder form.\n\n   \u003cimg src=\"./images/form-builder-components-dialog.jpg\" width=\"600px\" alt=\"Form Builder component dialog\" /\u003e\n\n1. Configure any properties on the captcha component\n\n   \u003cimg src=\"./images/hcaptcha-form-component-properties.jpg\" width=\"600px\" alt=\"hCaptcha Form Component properties\" /\u003e\n\n1. Load the form on your live site to see the captcha! 💪\n\n## Contributions\n\nIf you discover a problem, please [open an issue](https://github.com/wiredviews/xperience-hcaptcha/issues/new).\n\nIf you would like contribute to the code or documentation, please [open a pull request](https://github.com/wiredviews/xperience-hcaptcha/compare).\n\n## References\n\n- [hCaptcha](https://www.hcaptcha.com/)\n\n### Kentico Xperience\n\n- [Form Components](https://docs.xperience.io/x/pQ2RBg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiredviews%2Fxperience-hcaptcha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiredviews%2Fxperience-hcaptcha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiredviews%2Fxperience-hcaptcha/lists"}