{% extends 'frontend/base.html.twig' %}
{% block javascripts %}
<script>
document.addEventListener('DOMContentLoaded', () => {
var frame = document.getElementById('configurator').contentDocument
var c = frame.contentDocument || frame.contentWindow.document;
var inner_wp = c.getElementById('#header');
for (var i=0; i<inner_wp.length; i++) {
inner_wp[i].style.display = 'none';
}
})
</script>
{% endblock %}
{% block body %}
<section class="space-1 space-lg-2">
<div class="container">
<div class="w-100 text-center">
<h1 class="mb-4">{% trans %}Configuratore{% endtrans %}</h1>
</div>
<iframe frameborder="0"
scrolling="no"
id="configurator"
src="https://preventivo.astralpool.it/?task=detail&forma=CLASSIC"
class="w-100"
style="min-height: 1000px"
></iframe>
</div>
</section>
{% endblock %}