Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
9 lines
132 B
PHP
9 lines
132 B
PHP
<?php
|
|
session_start();
|
|
if(!$_SESSION['login-dosen']){
|
|
header('location:login.php');
|
|
}else{
|
|
header('location:dashboard.php');
|
|
}
|
|
|
|
?>
|