admin ui improvements; adds Force Recheck feature

This commit is contained in:
nai-degen
2023-08-29 03:49:08 -05:00
parent 6833736392
commit abb30d3608
15 changed files with 180 additions and 74 deletions
+12
View File
@@ -59,3 +59,15 @@
</style>
</head>
<body style="font-family: sans-serif; background-color: #f0f0f0; padding: 1em;">
<% if (flash && flash.type === "error") { %>
<p style="color: red; background-color: #eedddd; padding: 1em">
<strong>⚠️ Error:</strong> <%= flash.message %>
</p>
<% } %>
<% if (flash && flash.type === "success") { %>
<p style="color: green; background-color: #ddffee; padding: 1em">
<strong>✅ Success:</strong> <%= flash.message %>
</p>
<% } %>