You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cqtu/templates/registration/register.html

19 lines
360 B

{% extends "base.html" %}
{% block content %}
<h2>Welcome!</h2>
<div class="row">
<div class="col-sm-12">
I have {{ call_count }} callsigns in my Database!
<form method="POST" action="{% url 'register' %}">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Create User">
</form>
</div>
</div>
{% endblock %}