dynamic_login_form_html

    1| <html>
    2| <head>
    3| <title>Dynamic Web Page Login Form</title>
    4| </head>
    5| <body>
    6| <h1>Dynamic Web Page Login</h1>
    7| 
    8| <form name="login_form" action="http://localhost/phpwork/week6/dynamic_login.php" method="post">
    9| <fieldset id="input_field" style="width: 300px">
  10| Enter Password: <input type="password" name="pw" id="pw" size="10" />
  11| <br/><br/>
  12| Select a File:<br/>
  13| <input type="radio" name="rbnFile" id="rbnFile" value="dynamic.dat" />
  14| dynamic.dat
  15| <br/><br/>
  16| <input type="submit" name="Submit" value="Submit Password and File Selection" />
  17| <input type="reset" name="Reset" value="Reset Password and File Selection" />
  18| </fieldset>
  19| </form>
  20| </body>
  21| </html>