Sha256: 6245eff1dc8fd7ba2b6b35b85977b0714c8c0e13f015eeeb495a7cc9457c7f89
Contents?: true
Size: 1.2 KB
Versions: 121
Compression:
Stored size: 1.2 KB
Contents
<%= render 'account/shared/workflow/box' do |box| %> <% box.title t(".join_team") %> <% box.body do %> <div class="space-y"> <% if !@invitation.is_for?(current_user) %> <p><%= raw t('.has_invited', user_name: @invitation.from_membership.name) %></p> <%= render 'account/shared/alert' do %> <%= raw t('.alert', invitation_email: @invitation.email, user_email: current_user.email) %> <% end %> <p><%= t('.you_can') %></p> <div class="space-y-3 pb-1"> <p><%= raw t('.accept_the_invitation', user_email: current_user.email) %></p> <%= link_to t('.buttons.join_team'), accept_account_invitation_path(@invitation.uuid), method: :post, class: 'button full' %> </div> <%= render 'account/shared/decision_line' %> <div class="space-y-3"> <p><%= t('.sign_out') %></p> <%= link_to t('.buttons.logout'), main_app.destroy_user_session_path, method: 'delete', class: 'button-alternative full' %> </div> <% else %> <%= link_to t('.buttons.join_team'), accept_account_invitation_path(@invitation.uuid), method: :post, class: 'button full' %> <% end %> </div> <% end %> <% end %>
Version data entries
121 entries across 121 versions & 1 rubygems