bookwyrm/fedireads/templates/register.html
2020-01-28 23:23:05 -08:00

14 lines
326 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<form name="register" method="post">
{{ register_form.as_p }}
<button type="submit">Create account</button>
</form>
<a href="/login/">Log in with existing account</a>
</div>
</div>
{% endblock %}