6 lines
145 B
PHP
6 lines
145 B
PHP
<?php
|
|
// This is the main entry point of the application.
|
|
// It will redirect the user to the login page.
|
|
header("Location: login.php");
|
|
exit;
|
|
?>
|