i dont think the forum will let you type actual code into the chat boxes which is why i wrote it the way i did. you will need proper opening and closing tags for both input and form elements . the input tags will need to be nested inside of the form tags.
your tags look like
input
form
input
form
which is your problem
you need the tags to be
form
input
input
form.
also your input closing tag is not correct. google opening and closing html tags as well as nesting tags.
review the lesson. there is a sample of an input nested inside a form element. Note: you are to use the existing input element so do not copy the one from the lesson. Just use it was an example of how you need to place the form tags.
add the action attribute and run the tests
If you’re having an issue after completing the above we will need to see your current code to help you. Folllow these instructions to paste your code
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.