diff options
author | godofdream <soilfiction@gmail.com> | 2012-11-05 15:15:17 +0100 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-11-05 15:15:17 +0100 |
commit | 83d8d203685cac3f5aed3872897463c7afa50810 (patch) | |
tree | d1218cb219303b77f6c8fd6209a52b5025d56dee /module/web/templates/mobile/login.html | |
parent | improved header layout (diff) | |
download | pyload-83d8d203685cac3f5aed3872897463c7afa50810.tar.xz |
new Setup system, JQuery Web-If
Diffstat (limited to 'module/web/templates/mobile/login.html')
-rw-r--r-- | module/web/templates/mobile/login.html | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/module/web/templates/mobile/login.html b/module/web/templates/mobile/login.html index 5a1625f43..5821cc0c8 100644 --- a/module/web/templates/mobile/login.html +++ b/module/web/templates/mobile/login.html @@ -1,5 +1,31 @@ {% extends 'mobile/base.html' %} {% block title %}{{_("Login")}} - {{super()}} {% endblock %} + +{% block header %} + <h2> + PyLoad Login + </h2> +{% endblock %} + {% block content %} -<h1>Test test sd</h1> -{% endblock %}
\ No newline at end of file + <form action="/login" method="POST" data-ajax="false"> + <div data-role="fieldcontain"> + <fieldset data-role="controlgroup"> + <label for="username"> + Username + </label> + <input name="username" id="username" placeholder="username" value="" type="text" /> + </fieldset> + </div> + <div data-role="fieldcontain"> + <fieldset data-role="controlgroup"> + <label for="password"> + Password + </label> + <input name="password" id="password" placeholder="password" value="" type="password" /> + </fieldset> + </div> + <input id="submit" type="submit" data-theme="a" data-icon="forward" data-iconpos="left" value="Login" /> + </form> +{% endblock %} + |