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