nmgfitness/users/templates/users/register.html

22 lines
457 B
HTML

{% extends 'base.html' %}
{% load bootstrap4 %}
{% block content %}
<div class="col-8">
<h2>Register</h2>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<input type="submit" value="Register">
</form>
<a href="{% url 'login' %}">Back to login</a>
</div>
<p>
After registration your account will need to be activated.
Contact someone from the Fintess Commitee with your username to get your account activated.
{% endblock %}