10 lines
240 B
HTML
10 lines
240 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<p>Username: <input type="text" name="username"></p>
|
|
<p>Password: <input type="password" name="password"></p>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
{% endblock %}
|