You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next week and week following: AWS EC2 — setting up a cloud-based server
HTML Forms
What are they? A collection of HTML components that take in user input: text, check boxes (true/false), selections from a list, etc. They're much more user-friendly than typing query parameters into a browser address bar
What do they do? Take user input and send it to whatever is specified by action. In the Codecademy Forms lesson, the submit button didn't actually forward along any data, it just went to a new page.
Where is the data sent when we hit 'submit'?
Form elements each have data that is sent to the action endpoint in the form of name=value pairs
What are the components?
text,
Structure: name, type, value
How do they integrate with Flask or JavaScript?
Architecture of an HTML application
Show diagram — API call, fetching and processing of data, calling template, filling in template, sending output to browser