65 lines
1.7 KiB
PHP
65 lines
1.7 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>Little Backup Box</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;
|
|
}
|
|
h2 {
|
|
letter-spacing: 3px;
|
|
}
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 1%;
|
|
margin-bottom: 1%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<a href="/"><img src="tokyo-taxi.svg" height="51px" alt="Tokyo taxi"></a>
|
|
<h2>Little Backup Box</h2>
|
|
<p><a href="sysinfo.php">System info</a></p>
|
|
<p>Back up a storage card connected via a card reader</p>
|
|
<p>
|
|
<form method="post">
|
|
<button name="cardbackup">Card backup</button>
|
|
</form>
|
|
</p>
|
|
|
|
<p class="left">Shut down the Little Backup Box</p>
|
|
<p>
|
|
<form method="post">
|
|
<button class="button button-outline" name="shutdown">Shut down</button>
|
|
</form>
|
|
</p>
|
|
|
|
<?php
|
|
if (isset($_POST['cardbackup']))
|
|
{
|
|
shell_exec('sudo ./card-backup.sh > /dev/null 2>&1 & echo $!');
|
|
echo "<p>OK</p>";
|
|
}
|
|
|
|
if (isset($_POST['shutdown']))
|
|
{
|
|
shell_exec('sudo shutdown -h now > /dev/null 2>&1 & echo $!');
|
|
echo "<p>OK</p>";
|
|
}
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|