rework on codebase layout
[myslice.git] / views / templates / view-login.html
diff --git a/views/templates/view-login.html b/views/templates/view-login.html
new file mode 100644 (file)
index 0000000..5a5aeb4
--- /dev/null
@@ -0,0 +1,20 @@
+{% extends 'layout-myslice.html' %}
+
+{% block content_related %}
+{% include 'widget-login.html' %}
+{% endblock content_related %}
+
+{% block content_main %}
+<code> This page is currently connected to two authentication systems:</code>
+<ul>
+<li> A manifold server, located at <code>{{ manifold_url }}</code>, (configured in <code>myslice/config.py</code>), and</li>
+<li>
+as a proof of concept, a set of hardwired user accounts, see <code>auth/backend.py</code> for more details. 
+Currently hard wired users are:
+<ul>
+  {% for k,v in hard_wired_users.iteritems %}
+  <li class='well'> Name= <code>{{ k }}</code>, Password= <code>{{ v }}</code> </li>
+  {% endfor %}
+</ul>
+</li></ul>
+{% endblock content_main %}