pEpJSONServerAdapter/html/logview.html

29 lines
843 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logfile viewer &amp; formatter</title>
<style id="stl">
table,tr,th,td { border:1px solid gray; border-collapse:collapse; vertical-align:top;}
.log { font-family:monospace; white-space:pre; }
button { padding:5px;}
.enabled { font-weight:900; }
.disabled { text-decoration:line-through; text-decoration-color:red; font-style:italic; }
</style>
</head>
<body>
<noscript>This HTML page requires JavaScript. Sorry.</noscript>
<h1>Logfile viewer &amp; formatter</h1>
<input type="file" id="files" name="logfile" />
<p>
<output id="list"></output>
<p>
<table id="tbl" style="border:1px solid gray; border-collapse:collapse;"></table>
<script src="logview.js"></script>
</body>
</html>