diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-17 19:35:35 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-17 19:35:35 +0100 |
commit | a5f665f504dc544b4a03f2ee81da6c44555415e5 (patch) | |
tree | 4367bbbd041bf99fb54ba9e3f43a52a26944d801 /pyload/webui/themes/Next/tml/captcha.html | |
parent | Merge branch 'pr/n1006_mariusbaumann' into 0.4.10 (diff) | |
download | pyload-a5f665f504dc544b4a03f2ee81da6c44555415e5.tar.xz |
Update webui
Diffstat (limited to 'pyload/webui/themes/Next/tml/captcha.html')
-rw-r--r-- | pyload/webui/themes/Next/tml/captcha.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pyload/webui/themes/Next/tml/captcha.html b/pyload/webui/themes/Next/tml/captcha.html new file mode 100644 index 000000000..5a5893b72 --- /dev/null +++ b/pyload/webui/themes/Next/tml/captcha.html @@ -0,0 +1,40 @@ +<!-- Captcha box --> +<div id="cap_box" > + + <form id="cap_form" class="form-group" action="/json/set_captcha" method="POST" enctype="multipart/form-data" onsubmit="return false;"> + + <h3>{{_("Captcha reading")}}</h3> + <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="" /> + + <div class="form-group"> + <label>{{_("Captcha")}}</label> + <span ></br> + <img id="cap_textual_img" style="border: 1px solid #bbb; padding: 3px 3px 3px 3px;" src=""> + </span> + </div> + <div class="form-group"> + <label>{{_("Text")}}</label> + <input class="form-control" id="cap_result" name="cap_result" type="text" size="20" /> + <p class="small">{{_("Input the text on the captcha.")}}</p> + </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 class="btn btn-primary" id="cap_submit" type="submit" style="float: right; margin-left: 5px;">{{_("Submit")}}</button> + <button class="btn btn-default" id="cap_reset" type="reset" style="float: right">{{_("Close")}}</button> + </span> + </div> + + <div class="spacer"></div> + + </form> + +</div>
\ No newline at end of file |