update timer
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ body::-webkit-scrollbar {
|
|||||||
display:none
|
display:none
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" href="style.css?v=7.24.22">
|
<link rel="stylesheet" href="style.css?v=8.05.22">
|
||||||
<link rel="stylesheet" type="text/css" href="static/dialog-polyfill.css" />
|
<link rel="stylesheet" type="text/css" href="static/dialog-polyfill.css" />
|
||||||
<body>
|
<body>
|
||||||
<div class="banner">
|
<div class="banner">
|
||||||
|
|||||||
@@ -795,6 +795,10 @@ pre.bash {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
pre.bash #timer {
|
||||||
|
display:unset;
|
||||||
|
width:unset;
|
||||||
|
}
|
||||||
|
|
||||||
#toolsbtn {
|
#toolsbtn {
|
||||||
min-width: max-content;
|
min-width: max-content;
|
||||||
|
|||||||
+1
-1
@@ -21,7 +21,7 @@ if (file_exists('./scripts/thisrun.txt')) {
|
|||||||
$config = parse_ini_file('./scripts/firstrun.ini');
|
$config = parse_ini_file('./scripts/firstrun.ini');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<link rel="stylesheet" href="style.css?v=7.24.22">
|
<link rel="stylesheet" href="style.css?v=8.05.22">
|
||||||
<style>
|
<style>
|
||||||
body::-webkit-scrollbar {
|
body::-webkit-scrollbar {
|
||||||
display:none
|
display:none
|
||||||
|
|||||||
@@ -10,12 +10,23 @@ $_SESSION['behind'] = trim(shell_exec("sudo -u".$user." git -C ".$home."/BirdNET
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
|
<script>
|
||||||
|
var seconds = 0;
|
||||||
|
function update() {
|
||||||
|
if(confirm('Are you sure you want to update?')) {
|
||||||
|
setInterval(function(){ seconds += 1; document.getElementById('updatebtn').innerHTML = "Updating: <pre id='timer' class='bash'>"+new Date(seconds * 1000).toISOString().substring(14, 19)+"</span>"; }, 1000);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<div class="systemcontrols">
|
<div class="systemcontrols">
|
||||||
<form action="" method="GET">
|
<form action="" method="GET">
|
||||||
<button type="submit" name="submit" value="sudo reboot" onclick="return confirm('Are you sure you want to reboot?')">Reboot</button>
|
<button type="submit" name="submit" value="sudo reboot" onclick="return confirm('Are you sure you want to reboot?')">Reboot</button>
|
||||||
</form>
|
</form>
|
||||||
<form action="" method="GET">
|
<form action="" method="GET">
|
||||||
<button type="submit" name="submit" value="update_birdnet.sh" onclick="return confirm('Are you sure you want to update?')">Update <?php if(isset($_SESSION['behind']) && $_SESSION['behind'] != "0" && $_SESSION['behind'] != "with"){?><div class="updatenumber"><?php echo $_SESSION['behind']; ?></div><?php } ?></button>
|
<button type="submit" name="submit" id="updatebtn" value="update_birdnet.sh" onclick="update();">Update <?php if(isset($_SESSION['behind']) && $_SESSION['behind'] != "0" && $_SESSION['behind'] != "with"){?><div class="updatenumber"><?php echo $_SESSION['behind']; ?></div><?php } ?></button>
|
||||||
</form>
|
</form>
|
||||||
<form action="" method="GET">
|
<form action="" method="GET">
|
||||||
<button type="submit" name="submit" value="sudo shutdown now" onclick="return confirm('Are you sure you want to shutdown?')">Shutdown</button>
|
<button type="submit" name="submit" value="sudo shutdown now" onclick="return confirm('Are you sure you want to shutdown?')">Shutdown</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user