clean the main layout now known as unfold1, including for the 2 pieces (unfold1_main...
[unfold.git] / views / templates / view-login.html
1 {% extends 'layout-unfold1.html' %}
2
3 {% block unfold1_margin %}
4 {% include 'widget-login.html' %}
5 {% endblock unfold1_margin %}
6
7 {% block unfold1_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 unfold1_main %}