diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-07-18 23:37:09 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-07-18 23:37:09 +0000 |
commit | ba0d8b5a55ae69e228f303c01ba0fe2f545489ee (patch) | |
tree | 035fcb195e2cc6dde8a1fd4d1834d149e44f82d3 /phpBB/styles | |
parent | d61afd3509de3823c4f405fc95f8f799f073c505 (diff) | |
download | forums-ba0d8b5a55ae69e228f303c01ba0fe2f545489ee.tar forums-ba0d8b5a55ae69e228f303c01ba0fe2f545489ee.tar.gz forums-ba0d8b5a55ae69e228f303c01ba0fe2f545489ee.tar.bz2 forums-ba0d8b5a55ae69e228f303c01ba0fe2f545489ee.tar.xz forums-ba0d8b5a55ae69e228f303c01ba0fe2f545489ee.zip |
Initial commit for the QA captcha. Needs language & style finetuning and bug searching & fixing
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9786 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
-rwxr-xr-x | phpBB/styles/prosilver/template/captcha_qa.html | 23 | ||||
-rwxr-xr-x | phpBB/styles/subsilver2/template/captcha_qa.html | 5 |
2 files changed, 28 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/captcha_qa.html b/phpBB/styles/prosilver/template/captcha_qa.html new file mode 100755 index 0000000000..2f57afc61a --- /dev/null +++ b/phpBB/styles/prosilver/template/captcha_qa.html @@ -0,0 +1,23 @@ +<!-- IF S_TYPE == 1 --> +<div class="panel"> + <div class="inner"><span class="corners-top"><span></span></span> + + <h3>{L_CONFIRMATION}</h3> + <fieldset class="fields2"> + +<!-- ENDIF --> + + <dl> + <dt><label>{CONFIRM_QUESTION}</label>:<br /><span>{L_CONFIRM_QUESTION_EXPLAIN}</span></dt>
+ <dd> + <input type="text" tabindex="10" name="answer" id="answer" size="25" value="{USERNAME}" class="inputbox autowidth" title="{L_ANSWER}" /> + <input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /> + </dd> + </dl> + +<!-- IF S_TYPE == 1 --> + </fieldset> + <span class="corners-bottom"><span></span></span></div> +</div> +<!-- ENDIF --> + diff --git a/phpBB/styles/subsilver2/template/captcha_qa.html b/phpBB/styles/subsilver2/template/captcha_qa.html new file mode 100755 index 0000000000..08b267b8fb --- /dev/null +++ b/phpBB/styles/subsilver2/template/captcha_qa.html @@ -0,0 +1,5 @@ + <tr> + <td class="row1"><b class="genmed">{CONFIRM_QUESTION}: </b><br /></td> + <td class="row2"><input class="post" type="text" name="answer" size="80" /></td> + <input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /></td> + </tr>
\ No newline at end of file |