Changes

1,257 bytes added ,  21:36, 12 January 2022
no edit summary
Line 1: Line 1: −
 
+
<html>   
 +
    <head>   
 +
        <title>Registration Form</title>   
 +
    </head>   
 +
    <body>   
 +
        <link href = "registration.css" type = "text/css" rel = "stylesheet" />   
 +
        <h2>Sign Up</h2>   
 +
        <form name = "form1" action="modified.php" method = "post" enctype = "multipart/form-data" >   
 +
            <div class = "container">   
 +
                <div class = "form_group">   
 +
                    <label>First Name:</label>   
 +
                    <input type = "text" name = "fname" value = "" required/>   
 +
                </div>   
 +
                <div class = "form_group">   
 +
                    <label>Middle Name:</label>   
 +
                    <input type = "text" name = "mname" value = "" required />   
 +
                </div>   
 +
                <div class = "form_group">   
 +
                    <label>Last Name:</label>   
 +
                    <input type = "text" name = "lname" value = "" required/>   
 +
                </div>   
 +
                <div class = "form_group">   
 +
                    <label>Password:</label>   
 +
                    <input type = "password" name = "pwd" value = "" required/>   
 +
                </div>   
 +
            </div>   
 +
        </form>   
 +
    </body>   
 +
</html>
570

edits