Files
2026-08-15 00:28:06 +07:00

52 lines
1.8 KiB
PHP

<?php
/*
* Copyright (C) 2018 Laksamadi Guko.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
session_start();
// hide all error
error_reporting(0);
if (!isset($_SESSION["mikhmon"])) {
header("Location:../admin.php?id=login");
} else {
if (isset($_POST['submit'])) {
$API = new RouterosAPI();
$API->debug = false;
if ($API->connect($iphost, $userhost, decrypt($passwdhost))) {
$API->write('/system/shutdown');
$API->read();
}
session_destroy();
echo "<script>window.location='./admin.php?id=login'</script>";
}
}
?>
<div style="padding-top:10%;" class="register-box">
<div class="card">
<div class="card-header">
<h3 class="card-title"><i class="fa fa-power-off"></i> Shutdown MikroTik</h3>
</div>
<div class="card-body text-center">
<form action="" method="post" enctype="multipart/form-data">
<div>
<h3><?= $_shutdown.' '. $session; ?>?</h3>
</div>
<button class="btn bg-warning" type="submit" title="Yes" name="submit"><?= $_yes ?></button>
<a class="btn bg-primary" href="./?hotspot=dashboard&session=<?= $session; ?>" title="No"> <?= $_no ?> </a>
</form>
</div>
</div>
</div>