Login to apache server using a web page
I have this code right here: <html> <body style="color:white;background-color:#222222"> <center> <br> <input type="text" id="username"> Username</input> <br> <input type="text" id="password"> Password</input> <br><br> <button onclick="test()">Submit</button> <p id="url"/> <script type="text/javascript"> function test(){ var userInput = document.getElementById("username").value; var userPass = document.getElementById("password").value; document.getElementById("url").innerHTML = encodeURI('http://'+userInput+':'+userPass+'@'+window.location.hostname+':81/Home/');…