14 lines
411 B
HTML
14 lines
411 B
HTML
{% extends 'main/base.html' %}
|
|
{% load django_bootstrap5 %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="container col-md-6 mt-5">
|
|
<h1 class="text-center">{{ form_header }}</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% bootstrap_button button_type="submit" content="Enviar" extra_classes="w-100 mt-3" %}
|
|
</form>
|
|
</div>
|
|
{% endblock %} |