Merge branch 'master' of ssh://git.onelab.eu/git/myslice-django
[myslice.git] / templates / view-login.html
1 {% extends 'layout-myslice.html' %}
2
3 {% block content_related %}
4 {% include 'widget-login.html' %}
5 {% endblock content_related %}
6
7 {% block content_main %}
8 </br>
9 <code>
10 This page is currently connected to the Manifold authentication backend, By default it is pointing to the Manifold API running at "demo.myslice.info", in case you want to point it to your own Manifold API, please edit engine/manifold_api.py.
11 </br></br>
12 And also, as a proof of concept, it uses a set of hardwired user accounts for testing purposes, see auth/backend.py for more details.
13 </code>
14 <p>Currently hard wired users:</p>
15 <ul>
16   {% for k,v in hard_wired_users.iteritems %}
17   <li class='well'> Name= <code>{{ k }}</code>, Password= <code>{{ v }}</code> </li>
18   {% endfor %}
19 </ul>
20 {% endblock content_main %}