10 lines
202 B
HTML
10 lines
202 B
HTML
{# vim: set ft=djangohtml #}
|
|
{% extends "base.html" %}
|
|
|
|
{% block body %}
|
|
<div id='login-box'>
|
|
<form method='post' action=''>
|
|
<input type='text' name='user' />
|
|
</form>
|
|
</div>
|
|
{% endblock body %}
|