the existing input is this one, and you need to make the form element around that
I’ve edited your post for readability. 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.
to nest the existing input element in a new form element you need to write the opening form tag before the input element and the closing form tag after it
I’m going to try and spell this out for you one more time as clear as possible. If you don’t get it after this then I don’t know what to say.
Click the ‘Reset All Code’ button to start over
Do not change any of the existing code that is provided for you. Do not move anything to a different place. Do not change the text on anything. I don’t know if I can be more clear about this?
You will insert two new lines into the existing code. One line will be the opening form tag and the other line will be the closing form tag. The opening form tag will include the action attribute which will be set to the URL given in the instructions. There is only one <input> in the code so I think it is pretty obvious where these opening/closing form tags will go.
That’s it. That’s all you need to do.
Also, I noticed on the last code you posted that the double quotes you are using are fancy double quotes and not ascii double quotes. This will also cause the test to fail. If you are typing your code into another editor first and then copy/pasting into FCC then you need to configure your editor to use regular ascii quotes. Personally, I would just type your code directly into FCC and skip the editor for now.
this snippet features both the input element you should use - second line of the snippet, which you keep ignoring - and the code you inserted, last two lines of code
you do not need to create an input element
you must not create a new input element
you must use the existing one
yes, to nest the input element in the form element you need to put the opening form tag before the input element and the closing form tag after the input element