mirror of https://github.com/itflow-org/itflow
23 lines
437 B
PHP
23 lines
437 B
PHP
<?php include("inc_all.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
|
|
|
|
$temp_path = sys_get_temp_dir() . "/file.txt";
|
|
echo $temp_path."\n";
|
|
|
|
?>
|
|
|
|
<?php include("footer.php"); ?>
|