I have a simple input form that I want to have my users fill out and then press "continue". The value of the input form should then populate the title field on the node/edit form. How would I do this?

Comments

oobie11’s picture

Figured it out. for anyone wanting to do the same thing, here is what my simple form looks like:

<form id="my_form" method="get" action="/node/add/content">
<input name="edit[title]=" type="text">
<button class="submit" type="submit">Go!</button>
</form>

This gets the value of the input and after hitting the submit button, populates the title field of my content type.