diff --git a/src/NuGetGallery/Views/Packages/ReportAbuse.cshtml b/src/NuGetGallery/Views/Packages/ReportAbuse.cshtml index 3e85df6b2b..732648d04f 100644 --- a/src/NuGetGallery/Views/Packages/ReportAbuse.cshtml +++ b/src/NuGetGallery/Views/Packages/ReportAbuse.cshtml @@ -36,9 +36,9 @@
As applicable under 17 U.S.C. 512(f), I acknowledge that I may be subject to liability for damages if I knowingly materially misrepresent that material or activity is infringing.
- @Html.LabelFor(m => m.Signature) - @Html.EditorFor(m => m.Signature) - + @Html.LabelFor(m => m.Signature, new { id = "ReportAbuse_Signature_Label" }) + @Html.EditorFor(m => m.Signature, new { htmlAttributes = new { aria_labelledby = "ReportAbuse_Signature_Label ReportAbuse_Signature_Help" } }) + @Html.ValidationMessageFor(m => m.Signature)