Browser won't show my input value in address bar, and won't log values in console
Basically when I type simple form like this <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> </head> <body> <div id="loginContainer"> <form> <div> <label for="name">Name:</label> <input id="name" type="text" /> </div> <div> <label for="password">Password:</label> <input id="password" type="password" /> </div> <input type="submit" value="Login" /> </form> </div> <script> let nameVal = document.getElementById("name").value; let… Read More Browser won't show my input value in address bar, and won't log values in console