Template Html | Mikrotik Hotspot Login Page

<div class="welcome-text"> <h3>Welcome back!</h3> <p>Enter your credentials to access the internet</p> </div>

<!-- MIKROTIK STANDARD LOGIN FORM --> <!-- Important MikroTik variables: $(link-login) : login action URL $(link-login-only) : login URL without redir $(error) : err msg if any (err) $(username) : pre-filled username if failed attempt --> <form id="hotspotLoginForm" method="post" action="$(link-login-only)"> <!-- hidden fields required by MikroTik hotspot --> <input type="hidden" name="dst" value="$(link-orig)"> <input type="hidden" name="popup" value="false"> Mikrotik Hotspot Login Page Template Html

if (errMsg) errorTextSpan.innerText = errMsg; errorBox.classList.add('show'); // auto-hide after 6 seconds (optional) setTimeout(() => errorBox.classList.remove('show'); , 7000); else errorBox.classList.remove('show'); &lt;div class="welcome-text"&gt; &lt;h3&gt;Welcome back