diff options
Diffstat (limited to 'module/web/templates/mobile/login.html')
-rw-r--r-- | module/web/templates/mobile/login.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/module/web/templates/mobile/login.html b/module/web/templates/mobile/login.html new file mode 100644 index 000000000..5821cc0c8 --- /dev/null +++ b/module/web/templates/mobile/login.html @@ -0,0 +1,31 @@ +{% extends 'mobile/base.html' %} +{% block title %}{{_("Login")}} - {{super()}} {% endblock %} + +{% block header %} + <h2> + PyLoad Login + </h2> +{% endblock %} + +{% block content %} + <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 %} + |