Files
NoN-Site/nonpacks/templates/profiles/register.html
T

13 lines
389 B
HTML

{% extends 'base.html' %}
{% block title %}Register - Packs{% endblock %}
{% block content %}
<h1>Register</h1>
<form method="post" action="{% url 'profiles:register' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="{% url 'profiles:login' %}">Log in</a></p>
{% endblock %}