HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/yoda-ict/yoda-ict.nl/wwwroot/app/views/v_contact.php
<!-- Call to action -->

<section class="banner" id="banner">
    <img src="/public/images/static/contact.jpg" alt="YODA ICT" />
</section>

<section class="introduction">
    <div class="h_shadow u20 top"></div>


    <!-- Call to action -->
<div class="content center">
    <section class="call_to_action">
        <span class="title">
        Benieuwd wat Yoda ICT voor
        uw business kan betekenen?
        </span>

        <p>
            Neem contact op met Frans Rampen voor meer informatie of een vrijblijvende offerte.
        </p>

        <a class="btn offer" href="/offerte-aanvragen">
            <span class="text">Offerte aanvragen</span>
            <span class="arrow"></span>
            <span class="up"></span>
        </a>
    </section>


    <div class="vr">&nbsp;</div>

    <!-- Contact data -->

    <section class="contact_data">
        <h1>Contact</h1>

        <p>
        Yoda ICT<br />
        Frans Rampen<br />
        </p>
        <p>
        Patrijslaan 30<br />
        6021 ZS Budel<br />
        </p>
        tel:	+31 (0)495 43 08 30<br />
        mob:	+31 (0)6 14 24 95 64<br />
        e-mail:	<a href="mailto:info@yoda-ict.nl">info@yoda-ict.nl</a> 
    </section>

    <div class="vr">&nbsp;</div>


    <!-- Contact form -->

    <section class="form">
        <h2>Formulier</h2>
        <?php if( ! isset($_SESSION['contact']['success'])){ ?>

        <form method="post" action="/contact/validate">
            <?php $this->getData('form_fields');

            unset($_SESSION['contact_errors']);


            ?>
            <div class="clear"></div>

            <div class="input_btn">
                <input type="submit" name="submit" value="Verzenden" />
                <span class="arrow"></span>
            </div>
        </form>

        <?php
        }
        else
        {
            echo '<p>' . $_SESSION['contact']['success'] . '</p>';
            unset($_SESSION['contact']['success']);
        }
        ?>
    </section>
    <div class="clear"></div>
</div>
</section>