2024-05-15 08:38:06 +02:00
|
|
|
<div class="micromodal" id="{{modal_unique_id}}" aria-hidden="true">
|
2022-11-11 08:10:56 +01:00
|
|
|
<div class="modal__overlay" tabindex="-1">
|
2022-09-23 16:52:55 +02:00
|
|
|
<div {{#if id}}id="{{id}}" {{/if}}class="modal__container" role="dialog" aria-modal="true" aria-labelledby="dialog_title">
|
2021-07-04 08:47:08 +02:00
|
|
|
<header class="modal__header">
|
|
|
|
<h1 class="modal__title dialog_heading">
|
|
|
|
{{{ heading_text }}}
|
|
|
|
{{#if link}}
|
|
|
|
{{> help_link_widget }}
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
|
|
|
<button class="modal__close" aria-label="{{t 'Close modal' }}" data-micromodal-close></button>
|
|
|
|
</header>
|
2024-06-16 13:46:37 +02:00
|
|
|
<main class="modal__content" data-simplebar data-simplebar-tab-index="-1" {{#if always_visible_scrollbar}}data-simplebar-auto-hide="false"{{/if}}>
|
2021-07-04 08:47:08 +02:00
|
|
|
<div class="alert" id="dialog_error"></div>
|
|
|
|
{{{ html_body }}}
|
|
|
|
</main>
|
|
|
|
<footer class="modal__footer">
|
2021-07-18 14:20:59 +02:00
|
|
|
{{#unless single_footer_button}}
|
2023-07-25 17:58:43 +02:00
|
|
|
<button class="modal__btn dialog_exit_button" aria-label="{{t 'Close this dialog window' }}" data-micromodal-close>{{{ html_exit_button }}}</button>
|
2021-07-18 14:20:59 +02:00
|
|
|
{{/unless}}
|
2023-10-24 19:53:05 +02:00
|
|
|
<div class="dialog_submit_button_container">
|
|
|
|
<button class="modal__btn dialog_submit_button"{{#if single_footer_button}} aria-label="{{t 'Close this dialog window' }}" data-micromodal-close{{/if}}>
|
|
|
|
<span>{{{ html_submit_button }}}</span>
|
|
|
|
<div class="modal__spinner"></div>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-07-04 08:47:08 +02:00
|
|
|
</footer>
|
|
|
|
</div>
|
2018-09-12 17:43:38 +02:00
|
|
|
</div>
|
|
|
|
</div>
|