Remove mastodon posts on delete and OTP

This commit is contained in:
2026-08-26 14:16:29 +02:00
parent 80a3a3d541
commit f503dbaef2
24 changed files with 388 additions and 11 deletions
+2 -1
View File
@@ -16,7 +16,8 @@ form.addEventListener('submit', async (event) => {
});
if (!response.ok) {
status.textContent = 'Sign-in failed.';
const result = await response.json().catch(() => ({}));
status.textContent = result.detail || 'Sign-in failed.';
status.style.color = '#b91c1c';
return;
}