review the login view
[myslice.git] / templates / login-view.html
1 {% extends 'myslice-layout.html' %}
2
3 {% block content_related %}
4 <p class='login-status'> {{ state }} </p>
5 <a href="/" alt="Home"><img class="logo" src="{{ STATIC_URL }}img/myslice-logo.png" alt="MySlice" /></a>
6 <form action="/login/" method="post">
7   {% csrf_token %}
8   {% if next %}
9   <input type="hidden" name="next" value="{{ next }}" />
10   {% endif %}
11   username:
12   <input type="text" name="username" value="{{ username}}" /><br />
13   password:
14   <input type="password" name="password" value="" /><br />
15   <input type="submit" value="Log In" />
16 </form>
17 {% endblock content_related %}