fix: format cron-ui index.html

This commit is contained in:
Jarvis 2026-01-28 17:42:44 +00:00
parent 8163628f78
commit 85e750f34d

View File

@ -1,16 +1,22 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cron Jobs — Moltbot</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #18181b; }
</style>
</head>
<body>
<cron-app></cron-app>
<script type="module" src="./index.ts"></script>
</body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cron Jobs — Moltbot</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #18181b;
}
</style>
</head>
<body>
<cron-app></cron-app>
<script type="module" src="./index.ts"></script>
</body>
</html>