contentmatcher/templates/login.html

16 lines
363 B
HTML
Raw Normal View History

2022-08-12 19:51:55 +02:00
{% 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 %}