mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
875 B
20 lines
875 B
<%= form_for config, url: settings_notifications_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %>
|
|
<%= f.hidden_field :key %>
|
|
<div class="form-control">
|
|
<%= f.label :value, class: 'label' do %>
|
|
<span class="flex items-center space-x-1">
|
|
<span>
|
|
Completed documents BCC address
|
|
</span>
|
|
<span class="tooltip" data-tip="Send email copy with completed documents to a specified BCC address.">
|
|
<%= svg_icon('info_circle', class: 'w-4 h-4') %>
|
|
</span>
|
|
</span>
|
|
<% end %>
|
|
<%= tag.input type: 'email', multiple: true, name: 'account_config[value]', autocomplete: 'off', class: 'base-input', value: f.object.value %>
|
|
</div>
|
|
<div class="form-control pt-2">
|
|
<%= f.button button_title(title: 'Save', disabled_with: 'Updating'), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|