Input
Output
<!DOCTYPE html> <html> <head> <title>Simple Form</title> </head> <body> <form action="process.php" method="POST"> Name: <input type="text" name="username"><br><br> Email: <input type="email" name="email"><br><br> <input type="submit" value="Submit"> </form> </body> </html>