diff --git a/form.html b/form.html new file mode 100644 index 0000000000000000000000000000000000000000..49c05fb84cff2e1a34e91506ab0ea03c6e4daead --- /dev/null +++ b/form.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> + <title>Registration Form</title> +</head> +<body> + <h2>Registration Form</h2> + <form action="/submit_registration" method="post"> + <label for="fname">First Name:</label><br> + <input type="text" id="fname" name="fname" required><br><br> + + <label for="lname">Last Name:</label><br> + <input type="text" id="lname" name="lname" required><br><br> + + <label for="email">Email:</label><br> + <input type="email" id="email" name="email" required><br><br> + + <label for="password">Password:</label><br> + <input type="password" id="password" name="password" required><br><br> + + <input type="submit" value="Register"> + </form> +</body> +</html>