d4c976c0ea30c0f2fb6bc3df2fa3f386117613bb
[unfold.git] / views / 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 <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 content_main %}