diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-08-27 15:22:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-08-27 15:22:39 +0200 |
commit | 4c8a6401abe2ee3752d8a30402e74e882042352f (patch) | |
tree | 64e14f3147bb60ade00aeb21a9fa97a8f862733c /module/webui/themes/flat/tml/captcha.html | |
parent | Re-apply 8446e16346ece5a934550f69e81d0cad528f7fba (diff) | |
download | pyload-4c8a6401abe2ee3752d8a30402e74e882042352f.tar.xz |
[webui] Restructure file tree + convert tabs to 2 whitespaces + remove setup.html
Diffstat (limited to 'module/webui/themes/flat/tml/captcha.html')
-rw-r--r-- | module/webui/themes/flat/tml/captcha.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/module/webui/themes/flat/tml/captcha.html b/module/webui/themes/flat/tml/captcha.html new file mode 100644 index 000000000..ae1afe444 --- /dev/null +++ b/module/webui/themes/flat/tml/captcha.html @@ -0,0 +1,42 @@ +<!-- Captcha box --> +<div id="cap_box" class="window_box"> + + <form id="cap_form" action="/json/set_captcha" method="POST" enctype="multipart/form-data" onsubmit="return false;"> + + <h1>{{_("Captcha reading")}}</h1> + <p id="cap_title">{{_("Please read the text on the captcha.")}}</p> + + <div id="cap_textual"> + + <input id="cap_id" name="cap_id" type="hidden" value="" /> + + <label>{{_("Captcha")}} + <span class="small">{{_("The captcha.")}}</span> + </label> + <span class="cont"> + <img id="cap_textual_img" src=""> + </span> + + <label>{{_("Text")}} + <span class="small">{{_("Input the text on the captcha.")}}</span> + </label> + <input id="cap_result" name="cap_result" type="text" size="20" /> + + </div> + + <div id="cap_positional" style="text-align: center"> + <img id="cap_positional_img" src="" style="margin: 10px; cursor:pointer"> + </div> + + <div id="button_bar" style="text-align: center"> + <span> + <button id="cap_submit" type="submit" style="margin-left: 0">{{_("Submit")}}</button> + <button id="cap_reset" type="reset" style="margin-left: 0">{{_("Close")}}</button> + </span> + </div> + + <div class="spacer"></div> + + </form> + +</div>
\ No newline at end of file |