https://bans.anita.gg/

Submitted URL:
https://bans.anita.gg/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 2 found

Messages logged to the web console

TypeCategoryLog
verbosedom
URL
https://bans.anita.gg/
Text
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o
errornetwork
URL
https://bans.anita.gg/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,minimum-scale=1">
		<title>Login</title>
		<link href="style.css" rel="stylesheet" type="text/css">
		<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
	</head>
	<body>
		<div class="login">
			<h1>Login</h1>
			<div class="links">
				<a href="index.php" class="active">Login</a>
				<a href="register.html">Register</a>
			</div>
			<form action="authenticate.php" method="post">
				<label for="username">
					<i class="fas fa-user"></i>
				</label>
				<input type="text" name="username" placeholder="Username" id="username" required="">
				<label for="password">
					<i class="fas fa-lock"></i>
				</label>
				<input type="password" name="password" placeholder="Password" id="password" required="">
				<label id="rememberme">
					<input type="checkbox" name="rememberme">Remember me
				</label>
				<div class="msg"></div>
				<input type="submit" value="Login">
			</form>
		</div>
		<script>
		document.querySelector('.login form').onsubmit = function(event) {
			event.preventDefault();
			var form_data = new FormData(document.querySelector('.login form'));
			var xhr = new XMLHttpRequest();
			xhr.open('POST', document.querySelector('.login form').action, true);
			xhr.onload = function () {
				if (this.responseText == "Success") {
					window.location.href = "home.php";
				} else {
					document.querySelector('.msg').innerHTML = this.responseText;
				}
			};
			xhr.send(form_data);
		};
		</script>
	

</body></html>