Files
itflow/index.php
2023-10-20 15:25:52 -05:00

26 lines
390 B
PHP

<?php
if (file_exists("config.php")) {
include "inc_all.php";
?>
<!-- Breadcrumbs-->
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.php">Dashboard</a>
</li>
<li class="breadcrumb-item active">Blank Page</li>
</ol>
<!-- Page Content -->
<h1>Blank Page</h1>
<hr>
<?php
include "footer.php";
} else {
header("Location: setup.php");
}
?>