diff options
Diffstat (limited to 'mod/captcha/views/default')
-rw-r--r-- | mod/captcha/views/default/captcha/css.php | 8 | ||||
-rw-r--r-- | mod/captcha/views/default/input/captcha.php | 22 |
2 files changed, 0 insertions, 30 deletions
diff --git a/mod/captcha/views/default/captcha/css.php b/mod/captcha/views/default/captcha/css.php deleted file mode 100644 index 861d26d83..000000000 --- a/mod/captcha/views/default/captcha/css.php +++ /dev/null @@ -1,8 +0,0 @@ -<?php -/** - * Elgg Captcha CSS - * - * @package captcha - */ - -?>
\ No newline at end of file diff --git a/mod/captcha/views/default/input/captcha.php b/mod/captcha/views/default/input/captcha.php deleted file mode 100644 index c113d5baf..000000000 --- a/mod/captcha/views/default/input/captcha.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php -/** - * Elgg captcha plugin captcha hook view override. - * - * @package ElggCaptcha - */ - -// 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" alt="captcha" src="<?php echo elgg_get_site_url() . "pg/captcha/$token"; ?>" /> - </div> - <div class="captcha_input"> - <?php echo elgg_view('input/text', array('internalname' => 'captcha_input')); ?> - </div> - </label> -</div>
\ No newline at end of file |