moviewyrm/fedireads/templates/register.html

15 lines
355 B
HTML
Raw Normal View History

2020-01-29 03:05:59 +00:00
{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<form name="register" method="post">
2020-01-29 20:24:50 +00:00
{% csrf_token %}
2020-01-29 07:23:05 +00:00
{{ register_form.as_p }}
2020-01-29 03:05:59 +00:00
<button type="submit">Create account</button>
</form>
<a href="/login/">Log in with existing account</a>
</div>
</div>
{% endblock %}