source: extensions/EasyCaptcha/template/contactform.tpl @ 26923

Last change on this file since 26923 was 26923, checked in by mistic100, 10 years ago

add class="easycaptcha_hint" for public text

File size: 1.3 KB
Line 
1<tr>
2  {include file=$EASYCAPTCHA_ABS_PATH|cat:'template/common.inc.tpl'}
3
4  {* <!-- DRAG & DROP --> *}
5  {if $EASYCAPTCHA.challenge == 'drag'}
6  <td class="title"></td>
7  <td>
8    <span class="easycaptcha_hint">{'To verify you are a human, please place the <b>%s</b> in the most right box bellow.'|translate:$EASYCAPTCHA.drag.text}</span>
9    {$smarty.capture.easycaptcha}
10  </td>
11
12  {footer_script}
13  var captcha_code = new LiveValidation(jQuery('input[name="easycaptcha"]')[0], {ldelim} onlyOnSubmit: true });
14  captcha_code.add(Validate.Presence, {ldelim} failureMessage: "{'Pleaser answer'|translate}" });
15  {/footer_script}
16
17  {* <!-- TIC TAC TOE --> *}
18  {else if $EASYCAPTCHA.challenge == 'tictac'}
19  <td class="title"></td>
20  <td>
21    <span class="easycaptcha_hint">{'You are player X, click on the right case to complete the line.'|translate}</span>
22    {$smarty.capture.easycaptcha}
23  </td>
24
25  {footer_script}
26  var captcha_code = new LiveValidation(jQuery('input[name="easycaptcha_key"]')[0], {ldelim} onlyOnSubmit: true });
27  captcha_code.add(Validate.Custom, {ldelim}
28    failureMessage: "{'Pleaser answer'|translate}",
29    against: function() {ldelim}
30        return jQuery('input[name="easycaptcha"]:checked').length != 0;
31    }
32  });
33  {/footer_script}
34
35  {/if}
36</tr>
Note: See TracBrowser for help on using the repository browser.