WebguiappTemplate/HTML/application.html

47 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="res/styles.css">
<link rel="stylesheet" href="res/iconsfont.css">
<script src="res/main.js"></script>
<script src="res/res.js"></script>
<script src="res/cron.js"></script>
<script src="res/crondata.js"></script>
<title>~name~</title>
<script type="text/javascript">
function showcronerr(err) {if(err != "") alert(err);}
function dbgtmr(){PostData("tmrdbg=1", "application.html", false, false, false);}
</script>
</head>
<body>
<script>PageSurround();</script>
<!--========== CONTENTS ==========-->
<main>
<section>
<div class="ml">
<div class="mlp">
<div class="mlpc">
<form name="tmr" method="post">
<div class="mlhdr">TIMERS</div>
<div class="container">
<div id="timer"></div>
</div>
<button type="button" class ='btn' id='bt2' onclick="addtm()">Add timer</button>
<button type="button" class ='btn' id='bt2' onclick="dbgtmr()">Last scheduled exec</button>
</form>
</div>
</div>
</div>
</section>
</main>
<script>
loadcrondata(timarr, cron_objs, cron_acts);
drawtimers();
showMenu('header-toggle','navbar');
showcronerr("~cronerr~");
</script>
</body>
</html>