bookwyrm/fedireads/templates/register.html
2020-01-29 12:24:50 -08:00

15 lines
355 B
HTML

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