summaryrefslogtreecommitdiffstats
path: root/module/webui/themes/flat/tml/login.html
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-08 00:29:57 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-14 11:02:23 +0200
commit68d662e689cd42687341c550fb6ebb74e6968d21 (patch)
tree486cef41bd928b8db704894233b2cef94a6e346f /module/webui/themes/flat/tml/login.html
parentsave_join -> safe_join & save_path -> safe_filename (diff)
downloadpyload-68d662e689cd42687341c550fb6ebb74e6968d21.tar.xz
module -> pyload
Diffstat (limited to 'module/webui/themes/flat/tml/login.html')
-rw-r--r--module/webui/themes/flat/tml/login.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/module/webui/themes/flat/tml/login.html b/module/webui/themes/flat/tml/login.html
deleted file mode 100644
index 76365a79c..000000000
--- a/module/webui/themes/flat/tml/login.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{% extends '/flat/tml/base.html' %}
-
-{% block title %}{{_("Login")}} - {{super()}} {% endblock %}
-
-{% block content %}
-
-<div class="centeralign">
-<form action="" method="post" accept-charset="utf-8" id="login">
- <div class="no">
- <input type="hidden" name="do" value="login" />
- <fieldset>
- <legend>Login</legend>
- <label>
- <span>{{_("Username")}}</span>
- <input type="text" size="20" name="username" />
- </label>
- <br />
- <label>
- <span>{{_("Password")}}</span>
- <input type="password" size="20" name="password" />
- </label>
- <br />
- <input type="submit" value="Login" class="button" />
- </fieldset>
- </div>
-</form>
-
-{% if errors %}
-<p>{{_("Your username and password didn't match. Please try again.")}}</p>
- {{ _("To reset your login data or add an user run:") }} <b> python pyload.py -u</b>
-{% endif %}
-
-</div>
-<br>
-
-{% endblock %}