Forms contain inputs
a <form>
is an HTML element that contains input elements
- when the user enters data into these input elements
- and clicks the "Submit" button
- then the browser will wrap up all those values and send it to the server
Form Example
<form method='post'>
Name: <input type='text' name='name' value='Alice'>
<br />
Password: <input type='password' name='password'>
<br />
<input type='submit'>
</form>
Forms are semantic
- a form wraps input elements for submission
- but may also include or be included within other styled elements
- most of the time your
<form>
element will correspond to a block element (viz. the border of the form)- but by default
<form>
is an inline element - and instead of making it a block element, it's usually better to wrap it in a
div
- and apply styles to the wrapper and leave the
form
alone
- but by default
Form attributes
<form method='get' action='/login'>
-
method
corresponds to the first word in the HTTP protocol- "GET" is the standard (default) method; there are also POST, PUT, HEAD, DELETE, etc.
-
action
is the server path to submit the form to- if it's blank then it uses the same path as the current page (which is usually not what you want)
Form Methods: GET vs. POST
-
GET
means "return me a page (based on these parameters)" -
POST
means "take these parameters (and return me a page)"
Basically, GET
is for reading and POST
is for writing
but that distinction is often blurry
Also,
-
GET
sends all parameters via the request URL -
POST
sends some or all parameters via the request body*
Form elements
<form method='GET' action='/search'>
<label>Search by Author: <input type="search" name="author"></label>
<input type='submit' value='Search'>
</form>
-
<label>
marks some text as belonging to a certain input element -
<input name='q' type='search'>
is a text field- (that removes line breaks and may look different)
-
<input type='submit' value='Search'>
is a button whose label is the string "Search"- (yes, the names are confusing; the submit button goes way back to HTML 1.0)
There are many more types of form elements (or "widgets") that let the user enter data in a wide variety of formats.
Intercepting forms with JavaScript
- your JavaScript code can add a submit event handler
- also known as "onsubmit"
- this function will be called after the user clicks "Submit"
- but before the data is sent to the server
- this lets you modify the data sent to the server, or execute code before sending the data to the server, or just cancel the server call altogether
- if you intend a form to only be used by JavaScript, do one or both of these:
-
<form href='#'>
in your HTML -
event.preventDefault();
in your JS event handler
-
Form submission: how does it work?
- The user enters some values into the form elements
-
Either...
- the user clicks "Submit"
- or the user presses Enter in a text field
- or JavaScript calls
form.submit()
on the form DOM element
- The client sends an HTTP request
- including parameters like
q=apple&submit=Search
- (yes, the submit button's text label becomes the value)
- including parameters like
Forms as Input
Forms are a great way to accept user input in your webpages. The simplest way to handle user input is to create a form with an <input type="text" />
element, and an <input type="submit" />
element.
When the form is submitted you use JavaScript to read the value of the text field, and do whatever manipulations, or actions you need to do based on that input.
Lab: Say Hello
In this lab you will set up an input form where you can enter a name, and the page will display text greeting that name.
- Set up a form with a text input, and submit button
- When a user inputs their name and hits submit the page displays a personalized greeting for that name
- Format the name so that it's always capitalized
- Bonus Challenge: Can you get it to say hello to some names, and tell others to go away?
References
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form - docs https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms - guide