72 lines
1.7 KiB
PHP
72 lines
1.7 KiB
PHP
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Foto importeer app</title>
|
|
<link rel="shortcut icon" href="favicon.png" />
|
|
<link rel="stylesheet" href="milligram.min.css">
|
|
<script src="sweetalert.min.js"></script>
|
|
<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;
|
|
}
|
|
h2 {
|
|
letter-spacing: 3px;
|
|
}
|
|
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;
|
|
}
|
|
.colcontent {
|
|
display: none;
|
|
overflow: hidden;
|
|
}
|
|
button.collapsible {
|
|
margin-bottom: 26px;
|
|
}
|
|
.collapsible {
|
|
width: 180px;
|
|
}
|
|
input.custom.button {
|
|
height: 100px;
|
|
font-size: 15px;
|
|
}
|
|
</style>
|
|
<?php
|
|
$lastbackupdate = file_get_contents('session-lastbackup');
|
|
?>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<img src="tokyo-taxi.svg" height="51px" alt="Tokyo taxi">
|
|
<h2>Welkom</h2>
|
|
<div class="vl"></div>
|
|
|
|
<form>
|
|
<input type="button" class="custom button" value="Impoteer foto's" onClick="window.location = 'step1.php';">
|
|
</form>
|
|
<div class="vl"></div>
|
|
<form>
|
|
<input type="button" class="custom button button-outline" value="Maak een backup" onClick="window.location = 'backup-step1.php';">
|
|
</form>
|
|
<?php echo "<h5>Vorige backup is gemaakt op: $lastbackupdate</h5>";?>
|
|
<div id="content">
|
|
<div class="vl"></div>
|
|
<p><a href="sysinfo.php">System info</a></p>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|