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/SBogers10/promic.komma.pro/wwwroot/en/inlog_form.php
<?php if($_SESSION['valid_login']){ ?>

<div class="uitleg">
    <p class="ingelogd">Dear <?php echo($_SESSION['login']['aanhef']." ".$_SESSION['login']['achternaam']); ?>,<br />
    Welcome to the protected area of Promic's website.
    <br />Should you have any questions, we would always love to help you.</p>

    <div id="inlogDiv">
        <a id="uitlogKnop" class="ctaButton ctaOrange animationOrange">
            <span class="left"><span class="text">Logout</span><span class="up"></span><span class="hover"></span></span>
            <span class="right"><span class="icon arrowRight"></span><span class="up"></span><span class="hover"></span></span>
        </a>
    </div>
</div>

<?php }else{ ?>
<div class="uitleg">
   <p class="first">Please enter your details on the right to log on to your personal Promic account.</p>
   <p><a href="/en/create-account">Create account</a> | <a href="/en/forgot-password">Forgot password?</a></p>
</div>
<div id="inlogDiv">
	<div id="inlogFoutGegevens">Please fill up the fields correctly, please try again.</div>   
    <div id="inlogNietGeactiveerd">You have not activated your account yet. You have received an activation e-mail.</div>
    <div id="inlogPromicNietGeactiveerd">Promic has not activated your account yet.</div>
    <div id="inlogFoutError">Something went wrong, please try again later. Our apologies.</div>
    
    <form id="inlogForm" name="inlogForm" action="<?php $_SERVER['PHP_SELF']; ?>" method="post">
        <input id="emailadres_login" name="emailadres_login" type="text" value="E-MAIL ADDRESS" />
        <input id="password_login" name="password_login" type="password" value="password" />
        <a id="inlogKnop" class="ctaButton ctaOrange animationOrange">
            <span class="left"><span class="text">Login</span><span class="up"></span><span class="hover"></span></span>
            <span class="right"><span class="icon arrowRight"></span><span class="up"></span><span class="hover"></span></span>
        </a>
    </form>
</div>

<?php } ?>