IDEA Living Library
Revision as of 21:36, 12 January 2022 by Taiwo.lewis (talk | contribs)
<html>
   <head>    
       <title>Registration Form</title>    
   </head>    
   <body>    
       <link href = "registration.css" type = "text/css" rel = "stylesheet" />    
        Sign Up
<form name = "form1" action="modified.php" method = "post" enctype = "multipart/form-data" >
                   <label>First Name:</label>    
                   <input type = "text" name = "fname" value = "" required/>    
                                   <label>Middle Name:</label>    
                   <input type = "text" name = "mname" value = "" required />    
                                   <label>Last Name:</label>    
                   <input type = "text" name = "lname" value = "" required/>    
                                   <label>Password:</label>    
                   <input type = "password" name = "pwd" value = "" required/>    
                </form> </body>
</html>