27 lines
724 B
HTML
27 lines
724 B
HTML
<!doctype html>
|
|
<html lang="se">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta http-equiv="refresh" content="60" />
|
|
<title>Status salsteknik</title>
|
|
<script type="text/javascript" src="./script.js" defer></script>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
<body>
|
|
<h2>Devices with errors</h2>
|
|
<errors></errors>
|
|
<h2>Devices working as expected</h2>
|
|
<oks></oks>
|
|
<template id="itembox">
|
|
<div class="itembox">
|
|
<name></name>
|
|
<checktime></checktime>
|
|
<status></status>
|
|
<detail></detail>
|
|
</div>
|
|
</template>
|
|
</body>
|
|
</html>
|