blob: 2c880eb0a34d70bfbb45e9414dda6c30c5c827cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/**
* Elgg captcha plugin captcha hook view override.
*
* @package ElggCaptcha
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*/
// Generate a token which is then passed into the captcha algorithm for verification
$token = captcha_generate_token();
?>
<div class="captcha">
<input type="hidden" name="captcha_token" value="<?php echo $token; ?>" />
<label>
<?php echo elgg_echo('captcha:entercaptcha'); ?>
<div class="captcha_image">
<img class="captcha-input-image" src="<?php echo $vars['url'] . "pg/captcha/$token"; ?>" />
</div>
<div class="captcha_input">
<?php echo elgg_view('input/text', array('internalname' => 'captcha_input')); ?>
</div>
</label>
</div>
|