I am trying to build a Login page ( simple ) every time I run the website I got this error code
Notice: Undefined index: name in C:\xampp\htdocs\project1\index.php on line 14
on the screen in the web that I made.
Here is my source code:
<!DOCTYPE html>
    <html>
    <head>
    <title>Login</title>
    </head>
    <body>
    <form action="Login.php" method="get">
Name: <input type="text" name="name">
  <input type="submit">
 </form>
 <br>
 <?php echo $_GET["name"] ?>
 </body>
  </html>
 
    