bookwyrm/fedireads/templates/login.html
2020-01-25 16:00:52 -08:00

9 lines
259 B
HTML

{% extends 'layout.html' %}
{% block content %}
<form name="login" method="post">
<input type="text" name="username"></input>
<input type="password" name="password"></input>
<input type="submit"></input>
</form>
{% endblock %}