Initial Form needs to have at a minimum: * User Name diplayed loaded from app store (from login) (id used for post) * Idea title as text input from user * Description of the problem needing to be addressed as text block input from user * Description of the solution proposed as text block input from user This should include validation (all 3 fields being required and likely some minimum length). This data should be posted to "submitNewEntry" in NewEntry.action.js as an object like: ``` { userid:"", title:"", problemDescription:"", solutionIdea:"" } ```
Initial Form needs to have at a minimum:
This should include validation (all 3 fields being required and likely some minimum length).
This data should be posted to "submitNewEntry" in NewEntry.action.js as an object like: