forked from verdnatura/hedera-web
12 lines
130 B
PHP
12 lines
130 B
PHP
|
<?php
|
||
|
|
||
|
use Vn\Hedera\Web;
|
||
|
|
||
|
if (!Web::login ())
|
||
|
{
|
||
|
header ('Location: ?page=login#!error=sessionExpired');
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
?>
|