Bestanden uploaden naar 'scripts'
This commit is contained in:
62
scripts/error-import.php
Normal file
62
scripts/error-import.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Foto importeer tool</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;
|
||||
}
|
||||
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;
|
||||
}
|
||||
h4.h4txt {
|
||||
padding-bottom: 26px;
|
||||
margin: 0px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
swal("Er is iets fout gegaan tijdens het importeren", "", "error")
|
||||
</script>
|
||||
<div id="content">
|
||||
<img src="tokyo-taxi.svg" height="51px" alt="Tokyo taxi">
|
||||
<h1>Foto importeer tool</h1>
|
||||
<div class="vl"></div>
|
||||
<h3>Er is iets fout gegaan tijdens het importeren</h3>
|
||||
<div class="vl"></div>
|
||||
<h4 class="h4txt">Error wil be here</h4>
|
||||
<div class="vl"></div>
|
||||
<p class="left">Importeer tool uitzetten</p>
|
||||
<p>
|
||||
<form method="post">
|
||||
<button class="button button-outline" name="shutdown">Zet uit</button>
|
||||
</form>
|
||||
</p>
|
||||
<p><a href="sysinfo.php">System info</a></p>
|
||||
</div>
|
||||
<?php
|
||||
if (isset($_POST['shutdown']))
|
||||
{
|
||||
shell_exec('sudo shutdown -h 1');
|
||||
|
||||
echo '<script>swal(" ",{title:"De importeer tool word uitgeschakeld",icon: "info",button: false,});</script>';
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user