moviewyrm/fedireads/templates/register.html

14 lines
326 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 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 %}