fix(curriculum): typo in transcript (#58864)

This commit is contained in:
Asbed B
2025-02-18 21:06:07 +11:00
committed by GitHub
parent dac7fa3a14
commit 8219f75a4c

View File

@@ -75,7 +75,7 @@ But maybe you don't want to send the data as a URL-encoded form payload?
The `form` element accepts an `enctype` attribute, which represents the encoding type to use for the data.
This attribute only accepts three values: `application/x-www-form-urlencoded` (which is the default, sending the data as a URL-encoded form body), `text/plain` (which sends the data in plaintext form, in `name=value` pairs separated by new lines), or `mulitpart/form-data`, which is specifically for handling forms with a file upload.
This attribute only accepts three values: `application/x-www-form-urlencoded` (which is the default, sending the data as a URL-encoded form body), `text/plain` (which sends the data in plaintext form, in `name=value` pairs separated by new lines), or `multipart/form-data`, which is specifically for handling forms with a file upload.
In this video, you've learned the basics of form submissions. In future videos, we'll dive deeper into working with forms and how they interact with the server.