fix(curriculum): clarify registration-form name instructions (#54235)

This commit is contained in:
Shaun Hamilton
2024-03-28 11:00:22 +07:00
committed by GitHub
parent 298206b47e
commit b79da9b28f
@@ -9,7 +9,7 @@ dashedName: step-42
With form submissions, it is useful, and good practice, to provide each submittable element with a `name` attribute. This attribute is used to identify the element in the form submission.
Give each submittable element a unique `name` attribute of your choosing, except for the two `radio` inputs.
Except for the two `radio` inputs (which you have already named), give each submittable element a unique `name` attribute of your choosing.
# --hints--