mirror of https://github.com/itflow-org/itflow
28 lines
450 B
PHP
28 lines
450 B
PHP
<?php
|
|
|
|
if(file_exists('config.php')){
|
|
include("header.php");
|
|
|
|
?>
|
|
|
|
<!-- Breadcrumbs-->
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="index.html">Dashboard</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">Blank Page</li>
|
|
</ol>
|
|
|
|
<!-- Page Content -->
|
|
<h1>Blank Page</h1>
|
|
<hr>
|
|
<p>This is a great starting point for new custom pages.</p>
|
|
|
|
<?php
|
|
include("footer.php");
|
|
|
|
}else{
|
|
header("Location: setup.php");
|
|
}
|
|
|
|
?>
|