mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 06:06:19 +01:00
32 lines
956 B
HTML
32 lines
956 B
HTML
{% extends 'public/base.html' %}
|
|
|
|
{% load django_bootstrap5 %}
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}{% translate "Registration" %}{% endblock %}
|
|
|
|
{% block extra_include %}
|
|
{% include 'bundles/bootstrap-css-bs5.html' %}
|
|
{% include 'bundles/fontawesome.html' %}
|
|
{% include 'bundles/bootstrap-js-bs5.html' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<div class="card card-login border-secondary p-3">
|
|
<div class="card-body">
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
<button class="btn btn-primary btn-block" type="submit">{% translate "Register" %}</button>
|
|
</form>
|
|
|
|
{% include 'public/lang_select.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|