outline that we're currently using a set of hard-wired users
[myslice.git] / templates / login-view.html
1 {% extends 'myslice-layout.html' %}
2
3 {% block content_related %}
4 <p class='login-status'> {{ state }} </p>
5 <code>Current exp. login is based on hard-wired users</code>
6 <a href="/" alt="Home"><img class="logo" src="{{ STATIC_URL }}img/myslice-logo.png" alt="MySlice" /></a>
7 <form action="/login/" method="post">
8   {% csrf_token %}
9   {% if next %}
10   <input type="hidden" name="next" value="{{ next }}" />
11   {% endif %}
12   username:
13   <input type="text" name="username" value="{{ username}}" /><br />
14   password:
15   <input type="password" name="password" value="" /><br />
16   <input type="submit" value="Log In" />
17 </form>
18 {% endblock content_related %}