diff --git a/app/views/submissions/index.html.erb b/app/views/submissions/index.html.erb
index 116b620e..fd20aabc 100644
--- a/app/views/submissions/index.html.erb
+++ b/app/views/submissions/index.html.erb
@@ -36,6 +36,9 @@
Status
|
+
+ Share Link
+ |
|
@@ -46,27 +49,40 @@
<% submission.submitters.each do |submitter| %>
<%= submitter.email %>
- <% end %>
- |
-
- <% submission.submitters.each do |submitter| %>
-
-
- <%= submitter.status %>
-
- <%= link_to 'Copy', submit_form_url(slug: submitter.slug), title: 'Copy', class: 'btn btn-outline btn-xs' %>
-
- <% end %>
- |
-
- <%= link_to 'View', submission_path(submission), title: 'View', class: 'btn btn-outline btn-xs' %>
- <%= button_to 'Remove', submission_path(submission), class: 'btn btn-outline btn-error btn-xs', title: 'Delete', method: :delete, data: { turbo_confirm: 'Are you sure?' } %>
- |
-
- <% end %>
-
-
- <% else %>
- <%= render 'shared/no_data_banner' %>
- <% end %>
+
+ <% end %>
+
+
+ <% submission.submitters.each do |submitter| %>
+
+
+ <%= submitter.status %>
+
+
+ <% end %>
+ |
+
+ <% submission.submitters.each do |submitter| %>
+ <% share_link_input_id = "share-link-input_#{submitter.id}" %>
+
+
+
+ <%= svg_icon('clipboard', class: 'w-3 h-3 swap-on text-white') %>
+ <%= svg_icon('clipboard_copy', class: 'w-3 h-3 swap-off text-white') %>
+
+
+
+ <% end %>
+ |
+
+ <%= link_to 'View', submission_path(submission), title: 'View', class: 'btn btn-outline btn-xs' %>
+ <%= button_to 'Remove', submission_path(submission), class: 'btn btn-outline btn-error btn-xs', title: 'Delete', method: :delete, data: { turbo_confirm: 'Are you sure?' } %>
+ |
+
+ <% end %>
+
+
+<% else %>
+ <%= render 'shared/no_data_banner' %>
+<% end %>
diff --git a/app/views/submissions/new.html.erb b/app/views/submissions/new.html.erb
index e5cffbe5..f956ca78 100644
--- a/app/views/submissions/new.html.erb
+++ b/app/views/submissions/new.html.erb
@@ -6,35 +6,34 @@
<%= f.text_area :emails, required: true, class: 'base-textarea' %>
<% else %>
-
<%= f.label :send_email, class: 'flex items-center cursor-pointer' do %>
diff --git a/app/views/submissions/show.html.erb b/app/views/submissions/show.html.erb
index 089b645b..49e45d42 100644
--- a/app/views/submissions/show.html.erb
+++ b/app/views/submissions/show.html.erb
@@ -12,18 +12,18 @@
<%= link_to @submission.template.name, template_submissions_path(@submission.template), class: 'link link-hover' %>
- <%- if @submission.completed_at.present? %>
+ <% @submission.submitters.each do |submitter| %>