-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Government Publications Portal v2.2 #53
Conversation
Feature/GPP-235: NYC.ID v2.0 Implementation
Feature/GPP-199: Update Browse Menu
Feature/GPP-238: UI changes
Feature/GPP-240: Additional UI Changes
Feature/GPP-197: UI updates to record display page
Feature/GPP-249: Add Agencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are accessibility issues in these changes.
@@ -495,7 +495,7 @@ | |||
<% } %> | |||
</td> | |||
<td headers="t4" class="<%= row %>RowOddCol"> | |||
<input class="form-control" type="text" name="language_<%= key %>_<%= sequenceNumber %>" value="<%= (dcv.get(i).getLanguage() == null ? "" : dcv.get(i).getLanguage().trim()) %>" size="5"/> | |||
<input class="form-control" type="text" name="language_<%= key %>_<%= sequenceNumber %>" value="<%= (dcv.get(i).getLanguage() == null ? "" : Utils.addEntities(dcv.get(i).getLanguage().trim())) %>" size="5"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there's a label missing for this input. That makes it hard for people using screen readers or voice control to use the input. If you don't want a visual label, try an aria-label
attribute.
<img src="<%= request.getContextPath() %>/static/img/doris-banner.jpg" style="max-width: 50%; max-height: 50%;" > | ||
<div class="col-md-12 brand" style="text-align: center"> | ||
<a href="<%= request.getContextPath() %>/"> | ||
<img src="<%= request.getContextPath() %>/static/img/doris-logo.png"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This image is missing a text alternative (alt
attribute). This is a problem for people using screen readers.
No description provided.