mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 17:00:17 +02:00
28 lines
846 B
HTML
28 lines
846 B
HTML
{% extends 'public/base.html' %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}{% translate "Registration" %}{% endblock %}
|
|
|
|
{% block extra_include %}
|
|
{% include 'bundles/bootstrap-css.html' %}
|
|
{% include 'bundles/fontawesome.html' %}
|
|
{% include 'bundles/bootstrap-js.html' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="panel panel-default panel-transparent">
|
|
<div class="panel-body">
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{ form|bootstrap }}
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">{% translate "Register" %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% include 'public/lang_select.html' %}
|
|
</div>
|
|
{% endblock %}
|