mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-05-07 05:17:10 +02:00
9 lines
139 B
PHP
9 lines
139 B
PHP
|
|
<?php
|
||
|
|
session_start();
|
||
|
|
if (isset($_SESSION['user'])) {
|
||
|
|
header("Location: /list/user/");
|
||
|
|
} else {
|
||
|
|
header("Location: /login/");
|
||
|
|
}
|
||
|
|
?>
|