diff --git a/app/views/employers/show.html.erb b/app/views/employers/show.html.erb
index c47faa9..d22ccb2 100644
--- a/app/views/employers/show.html.erb
+++ b/app/views/employers/show.html.erb
@@ -34,7 +34,7 @@
SSN |
- <%= @employer.ssn %> |
+ <%= mask_ssn(@employer.ssn) %> |
Gender |
diff --git a/app/views/workers/show.html.erb b/app/views/workers/show.html.erb
index 315d365..f6bac94 100644
--- a/app/views/workers/show.html.erb
+++ b/app/views/workers/show.html.erb
@@ -30,7 +30,7 @@
SSN |
- <%= @worker.ssn %> |
+ <%= mask_ssn (@worker.ssn) %> |
Gender |
@@ -108,7 +108,7 @@
<%= form.date_field :end_date, class: 'form-control' %>
-
+
<%= form.submit "Link Participant", class: 'btn btn-dark' %>
<% end %>