added new layout with a single column - use this for the slice view
[unfold.git] / views / templates / view-login.html
1 {% extends 'layout-unfold2.html' %}
2
3 {% block unfold2_margin %}
4 {% include 'widget-login.html' %}
5 {% endblock unfold2_margin %}
6
7 {% block unfold2_main %}
8 <code> This page is currently connected to two authentication systems:</code>
9 <ul>
10 <li> A manifold server, located at <code>{{ manifold_url }}</code>, (configured in <code>myslice/config.py</code>), and</li>
11 <li>
12 as a proof of concept, a set of hardwired user accounts, see <code>auth/backend.py</code> for more details. However these won't of course have the ability to run real queries at the backend so it's more for testing login and all this.
13 Currently hard wired users are:
14 <ul>
15   {% for k,v in hard_wired_users.iteritems %}
16   <li class='well'> Name= <code>{{ k }}</code>, Password= <code>{{ v }}</code> </li>
17   {% endfor %}
18 </ul>
19 </li></ul>
20 {% endblock unfold2_main %}