webgpt.ninja

You @ 21:57 - 06. Nov 2024
show me html form
WebGPT @ 21:57 - 06. Nov 2024
    Sure, here is an example of a simple HTML form:
            
<!DOCTYPE html> <html> <head> <title>Sample Form</title> </head> <body> <h2>Sample Form</h2> <form action="/submit-form" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name"><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email"><br><br> <label for="message">Message:</label><br> <textarea id="message" name="message"></textarea><br><br> <input type="submit" value="Submit"> </form> </body> </html>
This form includes input fields for name, email, and a message, along with a submit button. When the form is submitted, it will send the data to a server-side script specified in the `action` attribute of the form.

Max tokens (character): 1800 Modal: gpt-3.5-turbo Temperature: 0.5 Free to use by mbsTECH.dk changelog.txt webgpt_v1.2.5.rar