29 lines
957 B
Twig
29 lines
957 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div {{ stimulus_controller('map') }} class="map-container"
|
|
data-map-dialog-outlet="#add-subject-dialog">
|
|
</div>
|
|
|
|
<dialog id="add-subject-dialog" class="modal">
|
|
<div class="modal-box">
|
|
<h3 class="text-lg font-bold mb-4">Add a place</h3>
|
|
|
|
<fieldset class="fieldset">
|
|
<legend class="fieldset-legend">Name</legend>
|
|
<input
|
|
type="text"
|
|
id="subject-name"
|
|
class="input w-full"
|
|
placeholder="e.g. Frituur De Leeuw"
|
|
autocomplete="off"
|
|
>
|
|
</fieldset>
|
|
|
|
<div class="modal-action">
|
|
<button id="subject-cancel" class="btn">Cancel</button>
|
|
<button id="subject-submit" class="btn btn-primary">Add</button>
|
|
</div>
|
|
</div>
|
|
</dialog>
|
|
{% endblock %}
|