New, simpler WEB UI

This commit is contained in:
Serghey Rodin 2012-05-15 15:51:43 +03:00
commit d352cb9385
439 changed files with 3920 additions and 45184 deletions

8
web/list/index.php Normal file
View file

@ -0,0 +1,8 @@
<?php
session_start();
if (isset($_SESSION['user'])) {
header("Location: /list/user");
} else {
header("Location: /login/");
}
?>