mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 06:20:16 +02:00
Fix state assignment. Fix character ownership transfer. Disable non-staff passwords. Fix dashboard groups panel placement. Fix corpstats viewmodel retrieval.
15 lines
442 B
HTML
15 lines
442 B
HTML
{% extends 'public/middle_box.html' %}
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% block title %}Register{% endblock %}
|
|
{% block middle_box_content %}
|
|
<form class="form-signin" role="form" action="" method="POST">
|
|
{% csrf_token %}
|
|
{{ form|bootstrap }}
|
|
<br/>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">{% trans "Submit" %}</button>
|
|
<br/>
|
|
</form>
|
|
{% endblock %}
|