summaryrefslogtreecommitdiffstats
path: root/templates/admin/login_plugin.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/login_plugin.html')
-rw-r--r--templates/admin/login_plugin.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/admin/login_plugin.html b/templates/admin/login_plugin.html
deleted file mode 100644
index b45b3a4..0000000
--- a/templates/admin/login_plugin.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "master-admin.html" %}
-{% block main %}
- <h2>{{ title }}</h2>
- {% if message %}
- <div class="alert alert-{{message_type}}">
- <p>{{ message }}</p>
- </div>
- {% endif %}
- <div id="options">
- <form role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
-
- {% for o in options %}
- <div class="form-group">
- <label for="{{ o }}">{{ o }}:</label>
- <input type="text" class="form-control" name="{{ o }}" value="{{ options[o][2] }}">
- </div>
- <span class="help-block">{{ options[o][0] }}</span>
- {% endfor %}
-
- <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
- Save
- </button>
- <a href="{{ basepath }}/admin" class="btn btn-default" title="Back">Back</a>
- </form>
- </div>
-{% endblock %} \ No newline at end of file