From cc317f458cdce58b03c640c6a73770d2fb3783b4 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 26 Jul 2023 08:11:38 -0700 Subject: [PATCH] fix(curriculum): allow valid input elements to pass (#51019) --- .../60f805f813eaf2049bc2ceea.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f805f813eaf2049bc2ceea.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f805f813eaf2049bc2ceea.md index 69bbb3122fe..366a72e7b95 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f805f813eaf2049bc2ceea.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f805f813eaf2049bc2ceea.md @@ -26,28 +26,28 @@ assert.equal(document.querySelectorAll('label input')?.length, 4); You should add the first `input` after the `label` text `Enter Your First Name:`, and include a space after the colon. ```js -const query = /^Enter Your First Name:\s+/ +const query = /^Enter Your First Name:\s+/ +const query = /^Enter Your Last Name:\s+/ +const query = /^Enter Your Email:\s+/ +const query = /^Create a New Password:\s+