12 lines
370 B
HTML

{% extends 'base.html' %}
{% block content %}
<h2>{% block title %}Log in{% endblock %}</h2>
<form method="post">
<input type="text" name="username" id="username" placeholder="Username" required><br/>
<input type="password" name="password" id="password" placeholder="Password" required><br/>
<input type="submit" value="Log in">
</form>
{% endblock %}