fix(curriculum): cat photo app (#41768)

Fix a couple of bugs I encountered when running through this
course.
This commit is contained in:
Nicholas Carrigan (he/him)
2021-04-08 01:07:18 -07:00
committed by GitHub
parent fa52f4cafe
commit a962d6afd4
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ dashedName: part-38
In order for a form's data to be accessed by the locaton specified in the `action` attribute, you must give the text field a `name` attribute and assign it a value to represent the data being submitted. For example, you could use the following syntax for an email address text field: `<input type="text" name="email">`.
Add the `name` attribute with the value `catphoto` to your text field.
Add the `name` attribute with the value `catphotourl` to your text field.
# --hints--