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