mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-04-26 12:04:42 +00:00
8 lines
259 B
HTML
8 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 %}
|