first commit

This commit is contained in:
2024-12-20 12:48:12 +01:00
commit d9fb74972a
217 changed files with 26712 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php get_header(); ?>
<? session_start(); ?>
<div id="primary" class="row-fluid mx-auto lg:container lg:mx-auto">
<div id="content" role="main" class="wrapper--inner span8 offset2">
<? if($_SESSION["configurator_sended"]) : ?>
<div id="configurator_sended">
<h2><?= get_field('title'); ?></h2>
<div class="configurator_sended_text">
<?= get_field('text'); ?>
</div>
<? unset($_SESSION["configurator_sended"]); ?>
</div>
<? else: ?>
<script type="text/javascript">
window.location.href = "/";
</script>
<? endif; ?>
</div>
</div>
<?php get_footer(); ?>