28 lines
583 B
HTML
28 lines
583 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Document</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background: black;
|
||
|
|
color: #00ff00;
|
||
|
|
font-family: monospace;
|
||
|
|
}
|
||
|
|
|
||
|
|
.log-box {
|
||
|
|
white-space: pre-wrap;
|
||
|
|
height: 90vh;
|
||
|
|
overflow-y: scroll;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h2>Application Logs</h2>
|
||
|
|
<div class="log-box">{% for line in logs %} {{ line }} {% endfor %}</div>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|