templates/authentication/request.html.twig line 1
{% extends 'base.html.twig' %}{% block bodycont %}<div class="container-fluid bg-dark-gray h-100 bg-image"><div class="row h-100 flex-column flex-md-row align-items-center"><div class="col"></div><div class="col-sm-6"><div class="card bg-dark text-white bg-gradient"><div class="card-body"><!-- Page Header --><div class="border-bottom flex-grow-0"><!-- Page Named and action buttons --><div class="row mb-3 justify-content-between"><div class="col d-flex align-items-center"><h3 class="mb-0">Reset {{ entity_name | render_title | plural_title }} password</h3></div><div class="col-auto d-flex align-items-center"><button id="form_save" title="Save New {{ entity_name | render_title | plural_title }}" class="btn bg-gradient btn-success ms-3"><i class="fas fa-save"></i><span>Save</span></button><a title="Cancel" href="{{ path(path_prefix ~ '_' ~ path_entity_name ~ '_authenticate') }}" class="btn bg-gradient btn-secondary ms-3"><i class="fas fa-undo"></i><span>Back</span></a></div></div></div><section class="flex-grow-1 position-relative"><div class="w-100 h-100">{% for type, flash_messages in app.session.flashBag.all %}{% for flash_message in flash_messages %}<div class="alert alert-{{ type }} alert-dismissible fade show mt-3 mb-0" role="alert">{{ flash_message }}<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>{% endfor %}{% endfor %}{% include 'common/form.html.twig' with {'form': form, 'prototype_request_url': prototype_request_url, 'disable_multi_entity': true} %}</div></section></div></div></div><div class="col"></div></div></div>{% endblock %}{% block javascripts %}{{ parent() }}{{ encore_entry_script_tags('form') }}{% endblock %}