<%= render 'shared/settings_nav' %>

Signature Request Email

<%= form_for AccountConfigs.find_or_initialize_for_key(current_account, AccountConfig::SUBMITTER_INVITATION_EMAIL_KEY), url: settings_personalization_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %> <%= f.hidden_field :key %> <%= f.fields_for :value, Struct.new(:subject, :body).new(*f.object.value.values_at('subject', 'body')) do |ff| %>
<%= ff.label :subject, class: 'label' %> <%= ff.text_field :subject, required: true, class: 'base-input' %>
<%= ff.label :body, class: 'label' %> <%= ff.text_area :body, required: true, class: 'base-input w-full py-2' %>
<% end %>
<%= f.button button_title(title: 'Save', disabled_with: 'Saving'), class: 'base-button' %>
<% end %>

Company Logo

<%= render 'logo_form' %>