1## Add this following line to your view:
2
3<img id="captcha" src="<?php echo GO::url('/site/account/captcha');?>" alt="Secure registration" />
4
5
6<input type="text" name="captcha_code" size="10" maxlength="6" />
7<a  onclick="document.getElementById('captcha').src = '/securimage/securimage_show.php?' + Math.random(); return false">[ Different Image ]</a>
8
9
10## Add the following line to your controller:
11
12if (\GO\Site\Widget\Secureimage\Secure::instance()->check($_POST['captcha_code']) == false) {
13	echo 'FAIL';
14}