mirror of
https://github.com/matroskin978/simple-auth.git
synced 2026-01-12 13:59:29 +00:00
11 lines
204 B
PHP
11 lines
204 B
PHP
<?php
|
|
|
|
session_start();
|
|
require_once __DIR__ . '/incs/config.php';
|
|
require_once ROOT . '/incs/db.php';
|
|
require_once ROOT . '/incs/functions.php';
|
|
|
|
$title = 'Home';
|
|
|
|
require_once VIEWS . '/index.tpl.php';
|