root / drupal7 / sites / all / modules / recaptcha / recaptcha-widget-noscript.tpl.php @ 6ae446a4
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file recaptcha-widget-noscript.tpl.php
|
5 |
* Default theme implementation to present the reCAPTCHA noscript code.
|
6 |
*
|
7 |
* Available variables:
|
8 |
* - $sitekey: Google web service site key.
|
9 |
* - $language: Current site language code.
|
10 |
* - $url: Google web service API url.
|
11 |
*
|
12 |
* @see template_preprocess()
|
13 |
* @see template_preprocess_recaptcha_widget_noscript()
|
14 |
*/
|
15 |
?>
|
16 |
<noscript>
|
17 |
<div style="width: 302px; height: 352px;"> |
18 |
<div style="width: 302px; height: 352px; position: relative;"> |
19 |
<div style="width: 302px; height: 352px; position: absolute;"> |
20 |
<iframe src="<?php print $url; ?>" frameborder="0" scrolling="no" style="width: 302px; height:352px; border-style: none;"></iframe> |
21 |
</div>
|
22 |
<div style="width: 250px; height: 80px; position: absolute; border-style: none; bottom: 21px; left: 25px; margin: 0px; padding: 0px; right: 25px;"> |
23 |
<textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 80px; border: 1px solid #c1c1c1; margin: 0px; padding: 0px; resize: none;" value=""></textarea> |
24 |
</div>
|
25 |
</div>
|
26 |
</div>
|
27 |
</noscript>
|