26 lines
555 B
HTML
26 lines
555 B
HTML
{% 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>
|
|
Please register with your (uppercase) Callsign as Usernames.
|
|
For DN-Calls, -[0-9] is allowed.
|
|
</p>
|
|
<form method="POST" action="{% url 'register' %}">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|