13 lines
327 B
PHP
13 lines
327 B
PHP
<?php
|
|
|
|
include(dirname(__FILE__).'/../../config/config.inc.php');
|
|
include(dirname(__FILE__).'/../../init.php');
|
|
include(dirname(__FILE__).'/trackingfront.php');
|
|
|
|
$tf = new TrackingFront();
|
|
if (!$tf->active)
|
|
Tools::redirect('404.php');
|
|
$tf->postProcess();
|
|
echo $tf->isLogged() ? $tf->displayAccount() : $tf->displayLogin();
|
|
|
|
?>
|