log file added
This commit is contained in:
24
templates/view_logs.html
Normal file
24
templates/view_logs.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user