My the 'name' Text isn't showing up in the form boxes... can anyone help troubleshoot
<html> <head></head> <body> <!--Forms Section--> <div style="background-color:navy; color:white; padding:5%;"> <h1 align="center">OH yeah FORM time!!!!</h1> <span style="color:black;"><p>This form uses the "GET" method which displays form data in the address bar</p> <form action="welcome-to-the-matrix.html" method="GET"> <input type="text" name="username"/><br/> <input type="password" name="password"/><br/> <input type="submit" name="I Choose the Red Pill"/> </form> <p>This form uses the "POST" method which <ins><i>DOES NOT</ins></i> displays form data in the address bar</p> <form action="welcome-to-the-matrix.html" method="POST"> <input type="text" name="username"/><br/> <input type="password" name="password"/><br/> <input type="submit" name="I Choose the Red Pill"/> </form> </span> <div> </body> </html>