contentmatcher/templates/login.html

16 lines
363 B
HTML

{% extends 'partials/base.html' %}
{% block name %}login{% endblock %}
{% block content %}
<main>
<form method="post">
<label for="username">username:</label>
<input name="username" required>
<label for="password">password:</label>
<input type="password" name="password" required>
<input type="submit" value="log in">
</form>
</main>
{% endblock %}