mirror of
https://gitgud.io/fatchan/haproxy-protection.git
synced 2025-05-09 02:05:37 +00:00
Merge branch 'master' into kikeflare
This commit is contained in:
@ -1,7 +1,9 @@
|
||||
function insertError(str) {
|
||||
const ring = document.querySelector('.lds-ring');
|
||||
ring.insertAdjacentHTML('afterend', `<p class="red">Error: ${str}</p>`);
|
||||
ring.remove();
|
||||
const captcha = document.querySelector('#captcha');
|
||||
(ring || captcha).insertAdjacentHTML('afterend', `<p class="red">Error: ${str}</p>`);
|
||||
ring && ring.remove();
|
||||
captcha && captcha.remove();
|
||||
}
|
||||
|
||||
function finishRedirect() {
|
||||
|
Reference in New Issue
Block a user