various cleanups and tweaks
[myslice.git] / auth / templates / widget-login.html
1 {% insert_str prelude 'css/login.css' %}
2 <p class='login-status'> {{ state }} </p>
3 <!--<a href="/" alt="Home"><img class="logo" src="{{ STATIC_URL }}img/myslice-logo.png" alt="MySlice" /></a>-->
4 <div class='well well-lg'>
5 <form action="/login/" method="post">
6   {% csrf_token %}
7   {% if next %}
8   <input type="hidden" name="next" value="{{ next }}" />
9   {% endif %}
10   <p class='login'>Username</p>
11   <input class='login' type="text" name="username" value="{{ username}}" /><br />
12   <p class='login'>Password</p>
13   <input class='login' type="password" name="password" value="" /><br />
14   <input type="submit" value="Log In" />
15 </form>
16 </div>