Move logs.html from frontend to dashboard

This commit is contained in:
Johannes Zellner
2024-10-04 20:47:49 +02:00
parent 2300e1baee
commit bc4e6ab1de
13 changed files with 558 additions and 19 deletions

20
dashboard/logs.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/api/v1/cloudron/avatar" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logs</title>
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/logs.js"></script>
</body>
</html>