2017-03-22 04:06:24 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">Registration</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<p>
|
2017-04-15 16:58:24 +02:00
|
|
|
<span class="label label-info">Note:</span> Please choose a username you don't need a username manager for.
|
2017-03-22 04:06:24 +01:00
|
|
|
</p>
|
|
|
|
<form method="POST" action="{% url 'user:register' %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
<button class="btn btn-primary">Register</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|