summaryrefslogtreecommitdiffstats
path: root/module/web/templates/mobile/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/templates/mobile/login.html')
-rw-r--r--module/web/templates/mobile/login.html30
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 %}
+