diff --git a/app/views/service_providers/edit.html.erb b/app/views/service_providers/edit.html.erb
index 019093924..40e9effba 100644
--- a/app/views/service_providers/edit.html.erb
+++ b/app/views/service_providers/edit.html.erb
@@ -1,5 +1,5 @@
-Editing "<%= service_provider.friendly_name %>"
+Editing "<%= service_provider.friendly_name %>"
<%= simple_form_for(service_provider, html: { autocomplete: 'off', role: 'form', class: 'service-provider-form usa-form usa-form--large' }) do |form| %>
<% selected_team = @service_provider.group_id %>
diff --git a/app/views/service_providers/index.html.erb b/app/views/service_providers/index.html.erb
index 919a8778e..86c77d1aa 100644
--- a/app/views/service_providers/index.html.erb
+++ b/app/views/service_providers/index.html.erb
@@ -1,4 +1,4 @@
-My apps
+My apps
<%= button_to t('headings.service_providers.new_app'), new_service_provider_path, method: :get, :class => "usa-button" %>
diff --git a/app/views/service_providers/new.html.erb b/app/views/service_providers/new.html.erb
index 236a8fd05..886684a09 100644
--- a/app/views/service_providers/new.html.erb
+++ b/app/views/service_providers/new.html.erb
@@ -1,7 +1,5 @@
-New test app
-
-
+New test app
<%= simple_form_for(@service_provider, html: { autocomplete: 'off', role: 'form', class: 'service-provider-form usa-form usa-form--large' }) do |form| %>
<%= render 'form', form: form %>
diff --git a/app/views/service_providers/show.html.erb b/app/views/service_providers/show.html.erb
index 7d67b2460..04973bf1b 100644
--- a/app/views/service_providers/show.html.erb
+++ b/app/views/service_providers/show.html.erb
@@ -1,37 +1,37 @@
<%= link_to 'Back to apps', '/service_providers', :class => 'usa-link' %>
-Details for "<%= service_provider.friendly_name %>"
+Details for "<%= service_provider.friendly_name %>"
-Friendly name:
+Friendly name:
<%= service_provider.friendly_name %>
-Description:
+Description:
<%= service_provider.description %>
-Agency:
+Agency:
<%= service_provider&.agency&.name %>
-Team:
+Team:
<%= service_provider.team %>
-Identity protocol:
+Identity protocol:
<%= service_provider.identity_protocol %>
-Identity verification level (IAL):
+Identity verification level (IAL):
<%= service_provider.ial_friendly %>
-Issuer:
+Issuer:
<%= service_provider.issuer %>
<% if current_user.admin? %>
- Production Issuer:
+ Production Issuer:
<%= service_provider.production_issuer %>
<% end %>
<%# Temp hack to allow feature in dev but not int for testing %>
<% if Figaro.env.logo_upload_enabled == 'true' %>
- Uploaded Logo:
+ Uploaded Logo:
<% if service_provider.logo_file.attached? %>
<%= image_tag url_for(service_provider.logo_file), height: "120px" %>
@@ -42,61 +42,66 @@
<% end %>
<% else %>
- Logo:
+ Logo:
+ <% if service_provider.logo %>
<%= service_provider.logo %>
+ <% end %>
<% end %>
<% if service_provider.identity_protocol == 'saml' %>
- Assertion Consumer Service URL:
+ Assertion Consumer Service URL:
<%= service_provider.acs_url %>
-Assertion Consumer Logout Service URL:
+Assertion Consumer Logout Service URL:
<%= service_provider.assertion_consumer_logout_service_url %>
-SP Initiated Login URL:
+SP Initiated Login URL:
<%= service_provider.sp_initiated_login_url %>
-SAML Assertion Encryption:
+SAML Assertion Encryption:
<%= service_provider.block_encryption %>
<% end %>
-Public certificate:
+Public certificate:
<%= service_provider.saml_client_cert %>
<% unless service_provider.saml_client_cert.blank? %>
Expires:
<%= render partial: 'certificate_expiration', locals: { app: service_provider } %>
<% end %>
-Return to App URL:
+Return to App URL:
<%= service_provider.return_to_sp_url %>
-Failure to Proof URL:
+Failure to Proof URL:
<%= service_provider.failure_to_proof_url %>
-Push Notification URL:
+Push Notification URL:
<%= service_provider.push_notification_url %>
<% if service_provider.identity_protocol == 'openid_connect' %>
- Redirect URIs
+ Redirect URIs
<% end %>
<% if service_provider.identity_protocol == 'saml' %>
- Additional Redirect URIs
+ Additional Redirect URIs
<% end %>
<%= (service_provider.redirect_uris || []).sort.join(' ').html_safe %>
-Attribute bundle:
+Attribute bundle:
<%= (service_provider.attribute_bundle || []).sort.join(', ') %>
-Active
-<%= image_tag service_provider.active? ? 'img/alerts/success.svg' : 'img/alerts/error.svg', height: '27', width: '27', :class =>'margin-bottom-neg-105' %>
+Active
+<%= image_tag service_provider.active? ? 'img/alerts/success.svg' : 'img/alerts/error.svg',
+ height: '27', width: '27',
+ :class => 'margin-bottom-neg-105',
+ :alt => sp_active_img_alt(service_provider.active?) %>
<% if current_user.admin? %>
-Service Provider config as YAML
+Service Provider config as YAML
<%= render 'service_provider_yaml' %>
<%end %>
diff --git a/app/views/teams/_no_teams.html.erb b/app/views/teams/_no_teams.html.erb
index f05e9ac85..73839c2de 100644
--- a/app/views/teams/_no_teams.html.erb
+++ b/app/views/teams/_no_teams.html.erb
@@ -2,7 +2,7 @@
-
Create your first team
+
Create your first team
Get started with the sandbox environment. Make a team for your integration project.
diff --git a/app/views/teams/_teams_list.html.erb b/app/views/teams/_teams_list.html.erb
index b4cadace7..5df6253e7 100644
--- a/app/views/teams/_teams_list.html.erb
+++ b/app/views/teams/_teams_list.html.erb
@@ -2,9 +2,9 @@
-
+
<%= link_to team.name, team_path(team), class: 'text-primary text-no-underline' %>
-
+
Agency: <%= team&.agency&.name %>
diff --git a/app/views/teams/all.html.erb b/app/views/teams/all.html.erb
index e1fbfd417..e62d880c2 100644
--- a/app/views/teams/all.html.erb
+++ b/app/views/teams/all.html.erb
@@ -1,4 +1,4 @@
-
All teams
+
All teams
<% if @teams.count > 0 %>
@@ -15,7 +15,7 @@
-
Create your first team
+
Create your first team
Get started with the sandbox environment. Make a team for your integration project.
diff --git a/app/views/teams/edit.html.erb b/app/views/teams/edit.html.erb
index 3fac7c71c..49c521bd3 100644
--- a/app/views/teams/edit.html.erb
+++ b/app/views/teams/edit.html.erb
@@ -1,4 +1,4 @@
-
Edit team
+
Edit team
<%= simple_form_for(@team, html: { autocomplete: 'off', role: 'form', class: 'usa-form usa-form--large' }) do |form| %>
@@ -6,7 +6,7 @@
<%= render 'form', form: form, agency_required: false, extra_message: t('headings.teams.temporary_warning_team_user') %>
-
Users: (<%= @team.users.count %>)
+
Users: (<%= @team.users.count %>)
<% @team.users.each do |u| %>
<%= u.email %>
diff --git a/app/views/teams/index.html.erb b/app/views/teams/index.html.erb
index b3a11a18f..1f778d4a3 100644
--- a/app/views/teams/index.html.erb
+++ b/app/views/teams/index.html.erb
@@ -1,4 +1,4 @@
-My teams
+My teams
<% if @teams.count > 0 %>
diff --git a/app/views/teams/new.html.erb b/app/views/teams/new.html.erb
index 96e1e6133..3a7a115a1 100644
--- a/app/views/teams/new.html.erb
+++ b/app/views/teams/new.html.erb
@@ -1,4 +1,4 @@
-
New team
+
New team
<%= simple_form_for(@team,
html: { autocomplete: 'off', role: 'form', class: 'usa-form usa-form--large' },
diff --git a/app/views/teams/show.html.erb b/app/views/teams/show.html.erb
index 569be9b8f..5806b6fce 100644
--- a/app/views/teams/show.html.erb
+++ b/app/views/teams/show.html.erb
@@ -3,15 +3,15 @@
<%= link_to "Back to Teams", teams_path, :class => 'usa-link' %>
-
Team details for "<%= @team.name %>"
+
Team details for "<%= @team.name %>"
-
Agency:
+
Agency:
<%= @team&.agency&.name %>
-
Description:
+
Description:
<%= @team.description %>
-
Users: (<%= @team.users.count %>)
+
Users: (<%= @team.users.count %>)