16 lines
273 B
HTML
16 lines
273 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<form method=post>
|
|
<label>
|
|
Username
|
|
<input type=text name=user>
|
|
</label>
|
|
<label>
|
|
Password
|
|
<input type=password name=pass>
|
|
</label>
|
|
<input type=submit>
|
|
</form>
|
|
{% endblock %}
|