Login to
SilverBullet
-
-
-
-
-
-
-
+ const error = params.get("error");
+ if (error === "0") {
+ document.querySelector(".error-message").innerText =
+ "The sent data was invalid";
+ } else if (error === "1") {
+ document.querySelector(".error-message").innerText =
+ "Invalid username or password";
+ } else if (error === "2") {
+ document.querySelector(".error-message").innerText =
+ "Too many invalid logins. Try again later";
+ }
+
+ const from = params.get("from");
+ if (from) {
+ var input = document.createElement("input");
+ input.setAttribute("type", "hidden");
+ input.setAttribute("name", "from");
+ input.setAttribute("value", from);
+
+ document.getElementById("login").appendChild(input);
+ }
+
+