Add files via upload

This commit is contained in:
jasonMPM
2026-03-03 16:23:30 -06:00
committed by GitHub
parent c1b3e01b74
commit e53b0c4bb2
9 changed files with 178 additions and 235 deletions

View File

@@ -29,9 +29,9 @@
.badge.success { background: #1a4a1a; color: #4caf50; }
.badge.error { background: #4a1a1a; color: #f44336; }
.badge.skipped { background: #3a3a1a; color: #aaa; }
#status-msg { margin-bottom: 12px; padding: 10px 14px; border-radius: 6px; display: none; }
#status-msg.ok { background: #1a4a1a; color: #4caf50; display: block; }
#status-msg.err { background: #4a1a1a; color: #f44336; display: block; }
#status-msg { margin-bottom: 12px; padding: 10px 14px; border-radius: 6px; }
#status-msg.ok { background: #1a4a1a; color: #4caf50; }
#status-msg.err { background: #4a1a1a; color: #f44336; }
input[type=email] { padding: 9px 12px; border-radius: 6px; border: 1px solid #555; background: #2a2a2a; color: #eee; font-size: 13px; width: 240px; }
.ts { color: #777; font-size: 11px; }
</style>
@@ -57,7 +57,7 @@
<input id="single-email" type="email" placeholder="user@domain.com" />
<button class="secondary" onclick="pushSingle()">Push Single User</button>
</div>
<div id="status-msg"></div>
<div id="status-msg" style="display:none;"></div>
<table>
<thead><tr><th>Timestamp</th><th>User</th><th>Name</th><th>Status</th><th>Message</th></tr></thead>
<tbody id="log-body"><tr><td colspan="5" style="color:#777;padding:20px;">Loading...</td></tr></tbody>
@@ -90,8 +90,10 @@
}
function showStatus(msg, ok) {
const el = document.getElementById('status-msg');
el.textContent = msg; el.className = ok ? 'ok' : 'err';
setTimeout(()=>{ el.className=''; el.textContent=''; }, 7000);
el.textContent = msg;
el.className = ok ? 'ok' : 'err';
el.style.display = 'block';
setTimeout(() => { el.style.display = 'none'; }, 7000);
}
async function pushAll() {
if (!confirm('Push signatures to ALL users?')) return;