diff --git a/app/components/badge_component.html.erb b/app/components/badge_component.html.erb index da8b6c8a2ed..4514b4de4d3 100644 --- a/app/components/badge_component.html.erb +++ b/app/components/badge_component.html.erb @@ -1,4 +1,4 @@ <%= content_tag('div', **tag_options, class: ['lg-verification-badge', *tag_options[:class]]) do %> - <%= image_tag(asset_path("alerts/#{icon}.svg"), size: 16, alt: '') %> + <%= image_tag(asset_path("alerts/#{icon}.svg"), size: 16, alt: '', role: 'img') %> <%= content %> <% end %> diff --git a/app/views/mfa_confirmation/show.html.erb b/app/views/mfa_confirmation/show.html.erb index fca5ca3d3b6..d88f2569c95 100644 --- a/app/views/mfa_confirmation/show.html.erb +++ b/app/views/mfa_confirmation/show.html.erb @@ -1,6 +1,6 @@ <% self.title = @content.heading %> -<%= image_tag asset_url('user-signup-ial1.svg'), width: 107, height: 119, alt: '', class: 'margin-bottom-4' %> +<%= image_tag asset_url('user-signup-ial1.svg'), width: 107, height: 119, alt: '', class: 'margin-bottom-4', role: 'img' %> <%= render PageHeadingComponent.new.with_content(@content.heading) %> diff --git a/app/views/openid_connect/logout/index.html.erb b/app/views/openid_connect/logout/index.html.erb index f0f46059050..0e474590447 100644 --- a/app/views/openid_connect/logout/index.html.erb +++ b/app/views/openid_connect/logout/index.html.erb @@ -1,7 +1,7 @@ <% self.title = t('openid_connect.logout.heading', app_name: APP_NAME) %>
- <%= image_tag(asset_url('user-access.svg'), width: '280', height: '91', alt: '') %> + <%= image_tag(asset_url('user-access.svg'), width: '280', height: '91', alt: '', role: 'img') %> <% if @service_provider_name.present? %> <%= render PageHeadingComponent.new.with_content(t('openid_connect.logout.heading_with_sp', app_name: APP_NAME, service_provider_name: @service_provider_name)) %> <% else %> diff --git a/app/views/partials/multi_factor_authentication/_mfa_selection.html.erb b/app/views/partials/multi_factor_authentication/_mfa_selection.html.erb index 6487e7c0f9a..e3cb61b1605 100644 --- a/app/views/partials/multi_factor_authentication/_mfa_selection.html.erb +++ b/app/views/partials/multi_factor_authentication/_mfa_selection.html.erb @@ -17,7 +17,7 @@ "two_factor_options_form_selection_#{option.type}", class: 'usa-checkbox__label usa-checkbox__label--illustrated', ) do %> - <%= image_tag(asset_url("mfa-options/#{option.type}.svg"), alt: '', class: 'usa-checkbox__image') %> + <%= image_tag(asset_url("mfa-options/#{option.type}.svg"), alt: '', class: 'usa-checkbox__image', role: 'img') %>
<%= option.label %> <%= content_tag( diff --git a/app/views/shared/_footer_lite.html.erb b/app/views/shared/_footer_lite.html.erb index 6a312801634..9576aa184e0 100644 --- a/app/views/shared/_footer_lite.html.erb +++ b/app/views/shared/_footer_lite.html.erb @@ -1,6 +1,6 @@