mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-11 21:40:17 +02:00
29 lines
895 B
HTML
29 lines
895 B
HTML
{% extends "allianceauth/base-bs5.html" %}
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}{% translate "SRP Request" %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">{% translate "Create SRP Request" %}</h1>
|
|
|
|
<div class="container-fluid">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="row">
|
|
<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">{% translate "Create SRP Request" %}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|