moviewyrm/fedireads/templates/login.html

20 lines
528 B
HTML
Raw Normal View History

2020-01-25 23:25:19 +00:00
{% extends 'layout.html' %}
{% block content %}
2020-01-29 01:23:38 +00:00
<div id="content">
<div>
<form name="login" method="post">
<label for="username">Username:
<input type="text" name="username"></input>
</label>
<label for="password">Password:
<input type="password" name="password"></input>
</label>
<button type="submit">Log in</button>
</form>
2020-01-29 03:05:59 +00:00
<a href="/register/">Create a new account</a>
2020-01-29 01:23:38 +00:00
</div>
2020-01-29 03:05:59 +00:00
2020-01-29 01:23:38 +00:00
</div>
2020-01-25 23:25:19 +00:00
{% endblock %}