From b79da9b28fb0f9b35dc12233858a8a11d847e259 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Thu, 28 Mar 2024 06:00:22 +0200 Subject: [PATCH] fix(curriculum): clarify registration-form name instructions (#54235) --- .../60fad1cafcde010995e15306.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fad1cafcde010995e15306.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fad1cafcde010995e15306.md index cb6ffdf2a30..4f912684780 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fad1cafcde010995e15306.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fad1cafcde010995e15306.md @@ -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--