Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Element must be the ID of a non-hidden form control

Explorer ,
Apr 06, 2019 Apr 06, 2019

Could someone please assist with the cause of these erro and provide a solution. Thanks in advance.

26400D17-5E9A-4B27-AFFF-8CDB1DF6D3C7.png

1060F9E6-01E9-4E03-9C0D-F27B2228CD38.png

6.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Apr 06, 2019 Apr 06, 2019

The error message says it all.  You need a  label with a matching input ID.  The errors show you have names but no IDs.

<label for="UserName">What is your User Name?</label>

<input name="UserName" id="UserName" type="text">

Translate
Community Expert ,
Apr 06, 2019 Apr 06, 2019
LATEST

The error message says it all.  You need a  label with a matching input ID.  The errors show you have names but no IDs.

<label for="UserName">What is your User Name?</label>

<input name="UserName" id="UserName" type="text">

Nancy O'Shea— Product User, Community Expert & Moderator
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines