enable map

This commit is contained in:
Tykayn 2025-05-27 00:05:10 +02:00 committed by tykayn
parent f69b7824af
commit 89467285da
7 changed files with 82 additions and 24 deletions

View file

@ -0,0 +1,31 @@
{% extends 'base.html.twig' %}
{% block title %}{{ 'display.title'|trans }}{% endblock %}
{% block stylesheets %}
{{ parent() }}
<link href='https://api.mapbox.com/mapbox-gl-js/v2.15.0/mapbox-gl.css' rel='stylesheet' />
<style>
.hidden {
display: none;
}
</style>
{% endblock %}
{% block body %}
<div class="container mt-4">
<div class="row">
<div class="col-12">
<div class="card shadow-sm p-4">
Demandez un email pour modifier les informations de ce lieu.
</div>
<form action="{{ path('app_public_request_email') }}" method="post">
<input type="email" name="email" placeholder="Email">
<button type="submit">Envoyer</button>
</form>
</div>
</div>
</div>
{% endblock %}