imagehost/imagehosting/templates/imagehosting/login.html
2017-12-12 13:15:45 +03:00

12 lines
409 B
HTML

{% extends 'imagehosting/base.html' %}
{% block content %}
<form method="post" action="{% url 'login' %}" class="w3-container" style="padding: 20px">
<table>
{% csrf_token %}
{{form.as_table}}
<tr><td></td><td><input id="login" type="submit" class="w3-btn w3-right"value="login" /></td></tr>
</table>
<input type="hidden" name="next" value="{{ next }}" />
</form>
{% endblock %}