<div id="error-summary" class="error-summary" aria-live="assertive" role="alert">
Please correct the errors belows
</div>
<div id="error-summary" class="error-summary" aria-live="assertive" role="alert">
{{ summary }}
</div>
{
"summary": "Please correct the errors belows"
}
.error-summary:empty {
display: none;
}
.error-summary {
border: solid 2px $color-error;
border-radius: .5em;
padding: 1em;
color: $color-error;
margin-bottom: $line-height;
}
Best Practices
aria-live="assertive"
and role="alert"
so that assistive technology announces the error summary when it appears.