mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
31 lines
846 B
Twig
31 lines
846 B
Twig
{% 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 %}
|