diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/register.tpl.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/templates/register.tpl.php b/templates/register.tpl.php index 7160535..7691a95 100644 --- a/templates/register.tpl.php +++ b/templates/register.tpl.php @@ -27,6 +27,15 @@ window.onload = function() { <td><input type="text" id="email" name="email" size="40" class="required" /></td> <td></td> </tr> + +<?php if(strlen($antispamQuestion)>0) {?> +<tr> + <th align="left"><label for="question"><?php echo T_('Antispam question'); ?></label></th> + <td><input type="text" id="antispamAnswer" name="antispamAnswer" size="40" class="required" value="<?php echo $antispamQuestion ?>"/></td> + <td></td> +</tr> +<?php } ?> + <tr> <td></td> <td><input type="submit" name="submitted" value="<?php echo T_('Register'); ?>" /></td> @@ -37,4 +46,4 @@ window.onload = function() { <?php $this->includeTemplate($GLOBALS['bottom_include']); -?>
\ No newline at end of file +?> |