polyblog/templates/usermanager/userlogin.html

27 lines
635 B
HTML

{% extends "base.html" %}
{% block content %}
<!--<table style="align: center; width: 50%; margin-left: auto; margin-right: auto">-->
<table class="notification">
<tbody>
<tr>
<td>
<h3>Login:</h3>
(Create <a href="{% url 'usernew' %}">a new user</a> instead?)<br/><br/>
<form action="" method="post">
{% csrf_token %}
<b>Username:</b><br/>
{{ editform.username }} <i>(required)</i><br/><br/>
<b>Password:</b><br/>
{{ editform.password }} <i>(required)</i><br/><br/>
<input type="submit" value="Submit" />
</form>
</td>
</tr>
</tbody>
</table>
{% endblock %}