Input
Output
<html> <body> <form action="/submit" method="post"> <label for="name">Name:</label><br> <input type="text" id="name" name="name"><br><br> <label for="email">Email:</label><br> <input type="email" id="email" name="email"><br><br> <button type="submit">Submit</button> <button type="reset">Reset</button> </form> </body> </html>