57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<html lang="en">
|
|
<!-- Author: Dmitri Popov, dmpop@linux.com
|
|
License: GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt -->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Foto importeer tool</title>
|
|
<link rel="shortcut icon" href="favicon.png" />
|
|
<link rel="stylesheet" href="milligram.min.css">
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
#content {
|
|
margin: 0px auto;
|
|
text-align: center;
|
|
}
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 1%;
|
|
margin-bottom: 1%;
|
|
}
|
|
.vl {
|
|
border-top: 1px solid #9b4dca;
|
|
padding-top: 10px;
|
|
padding-bottom: 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<img src="tokyo-taxi.svg" height="51px" alt="Tokyo taxi">
|
|
<h1>Foto importeer tool</h1>
|
|
<div class="vl"></div>
|
|
<h3>Show execution log</h3>
|
|
<div class="vl"></div>
|
|
<div style="display: inline-block; text-align: left; padding-right: 10px; padding-left: 10px; padding-bottom: 26px;">
|
|
<?php
|
|
$fh = fopen("session-exec-log", 'r');
|
|
|
|
$pageText = fread($fh, 2500000);
|
|
|
|
echo nl2br($pageText);
|
|
?>
|
|
|
|
</div>
|
|
<div class="vl"></div>
|
|
<form>
|
|
<input type="button" onClick="history.go(0)" value="Refresh">
|
|
</form>
|
|
<form>
|
|
<input type="button" class="button button-outline" value="Go back" onClick="window.location = 'sysinfo.php';">
|
|
</form>
|
|
</body>
|
|
</html>
|