# patchstack/2.1.7/includes/views/captcha_v2.php

Patchstack – WordPress &amp; Plugins Security, version 2.1.7. 13 lines.

- Page: https://pluginprobe.com/plugins/patchstack/2.1.7/code/includes/views/captcha_v2.php
- Raw: https://pluginprobe.com/plugins/patchstack/2.1.7/raw/includes/views/captcha_v2.php
- Modified: 2021-11-01T08:59:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/patchstack/2.1.7/code/includes/views/captcha_v2.php#L10-L20`.

```php
<?php
// Do not allow the file to be called directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="g-recaptcha" data-sitekey="<?php echo esc_attr( $site_key ); ?>"></div>
<noscript>
	<iframe src="https://www.google.com/recaptcha/api/fallback?k=<?php echo esc_attr( $site_key ); ?>"></iframe>
	<textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"></textarea>
</noscript>
<script id="gRecaptchaSrc" src="https://www.google.com/recaptcha/api.js"></script>

```
