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.
171 lines
7.8 KiB
171 lines
7.8 KiB
<div class="flex-wrap space-y-4 md:flex md:flex-nowrap md:space-y-0 md:space-x-10">
|
|
<%= render 'shared/settings_nav' %>
|
|
<div class="md:flex-grow">
|
|
<div class="max-w-xl">
|
|
<h1 class="text-4xl font-bold mb-4">
|
|
<%= t('pdf_signature') %>
|
|
</h1>
|
|
<div id="result">
|
|
<p class="mb-2">
|
|
<%= t('upload_signed_pdf_file_to_validate_its_signature_') %>
|
|
</p>
|
|
</div>
|
|
<%= form_for '', url: verify_pdf_signature_index_path, method: :post, html: { enctype: 'multipart/form-data' } do |f| %>
|
|
<%= f.button type: 'submit', class: 'flex' do %>
|
|
<div class="disabled mb-3">
|
|
<%= svg_icon('loader', class: 'w-5 h-5 animate-spin inline') %>
|
|
<%= "#{t('analyzing')}..." %>
|
|
</div>
|
|
<% end %>
|
|
<file-dropzone data-name="verify_attachments" data-submit-on-upload="true" class="w-full">
|
|
<label for="file" class="w-full block h-32 relative bg-base-200 hover:bg-base-200/70 rounded-md border border-base-content border-dashed">
|
|
<div class="absolute top-0 right-0 left-0 bottom-0 flex items-center justify-center">
|
|
<div class="flex flex-col items-center">
|
|
<span data-target="file-dropzone.icon">
|
|
<%= svg_icon('cloud_upload', class: 'w-10 h-10') %>
|
|
</span>
|
|
<span data-target="file-dropzone.loading" class="hidden">
|
|
<%= svg_icon('loader', class: 'w-10 h-10 animate-spin') %>
|
|
</span>
|
|
<div class="font-medium mb-1">
|
|
<%= t('verify_signed_pdf') %>
|
|
</div>
|
|
<div class="text-xs">
|
|
<%= t('click_to_upload_or_drag_and_drop_files_html') %>
|
|
</div>
|
|
</div>
|
|
<input id="file" name="files[]" class="hidden" data-action="change:file-dropzone#onSelectFiles" data-target="file-dropzone.input" type="file" accept="application/pdf" multiple>
|
|
</div>
|
|
</label>
|
|
</file-dropzone>
|
|
<% end %>
|
|
</div>
|
|
<div class="flex justify-between items-end mb-4 mt-8">
|
|
<h2 class="text-3xl font-bold">
|
|
<%= t('signing_certificates') %>
|
|
</h2>
|
|
<% if can?(:create, @encrypted_config) %>
|
|
<%= link_to new_settings_esign_path, class: 'btn btn-primary btn-md', data: { turbo_frame: 'modal' } do %>
|
|
<%= svg_icon('plus', class: 'w-6 h-6') %>
|
|
<span><%= t('upload_cert') %></span>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<%= render 'alert' %>
|
|
<div class="overflow-x-auto">
|
|
<table class="table w-full table-lg rounded-b-none overflow-hidden">
|
|
<thead class="bg-base-200">
|
|
<tr class="text-neutral uppercase">
|
|
<th>
|
|
<%= t('name') %>
|
|
</th>
|
|
<th>
|
|
<%= t('valid_to') %>
|
|
</th>
|
|
<th>
|
|
<%= t('status') %>
|
|
</th>
|
|
<th class="text-right" width="1px">
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @pkcs_list.each do |item| %>
|
|
<% next if item['pkcs'].blank? %>
|
|
<tr scope="row" class="group">
|
|
<td>
|
|
<%= item['name'] %>
|
|
</td>
|
|
<td>
|
|
<%= l(item['pkcs'].certificate.not_after.to_date, format: :long, locale: current_account.locale) %>
|
|
</td>
|
|
<td>
|
|
<% if item['status'] == 'default' %>
|
|
<span class="badge badge-lg badge-info badge-outline">
|
|
<%= t('default') %>
|
|
</span>
|
|
<% elsif can?(:update, @encrypted_config) %>
|
|
<%= button_to settings_esign_path, method: :put, params: { name: item['name'] }, class: 'btn btn-outline btn-neutral btn-xs whitespace-nowrap', title: t('make_default'), data: { turbo_confirm: t('are_you_sure_') } do %>
|
|
<%= t('make_default') %>
|
|
<% end %>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<% if item['name'] != EsignSettingsController::DEFAULT_CERT_NAME && item['status'] != 'default' && can?(:destroy, @encrypted_config) %>
|
|
<%= button_to settings_esign_path, params: { name: item['name'] }, method: :delete, class: 'btn btn-outline btn-error btn-xs', title: t('remove'), data: { turbo_confirm: t('are_you_sure_') } do %>
|
|
<%= t('remove') %>
|
|
<% end %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
<% unless Docuseal.multitenant? %>
|
|
<%= render 'default_signature_row' %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<% encrypted_config = EncryptedConfig.find_or_initialize_by(account: current_account, key: EncryptedConfig::TIMESTAMP_SERVER_URL_KEY) %>
|
|
<% if !Docuseal.multitenant? && can?(:manage, encrypted_config) %>
|
|
<div class="flex-grow max-w-xl">
|
|
<div class="flex justify-between items-end mb-4 mt-8">
|
|
<h2 class="text-3xl font-bold">
|
|
<%= t('timestamp_server') %>
|
|
</h2>
|
|
</div>
|
|
<%= form_for encrypted_config, url: timestamp_server_index_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %>
|
|
<div class="form-control">
|
|
<%= f.label :value, class: 'label' do %>
|
|
<span class="flex items-center space-x-1">
|
|
<span>
|
|
<%= t('timeserver_url') %>
|
|
</span>
|
|
<span class="tooltip" data-tip="<%= t('url_of_the_trusted_rfc_3161_timeserver_to_be_used_to_generate_timestamp_signatures') %>">
|
|
<%= svg_icon('info_circle', class: 'w-4 h-4') %>
|
|
</span>
|
|
</span>
|
|
<% end %>
|
|
<%= f.url_field :value, autocomplete: 'off', class: 'base-input', placeholder: "URL (#{t('optional')})" %>
|
|
</div>
|
|
<div class="form-control pt-2">
|
|
<%= f.button button_title(title: t('save'), disabled_with: t('updating')), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% account_config = AccountConfig.where(account: current_account, key: AccountConfig::ESIGNING_PREFERENCE_KEY).first_or_initialize(value: 'single') %>
|
|
<% if can?(:manage, account_config) %>
|
|
<div class="px-1 mt-8 max-w-xl">
|
|
<div class="flex justify-between items-end mb-4 mt-8">
|
|
<h2 class="text-3xl font-bold">
|
|
<%= t('preferences') %>
|
|
</h2>
|
|
</div>
|
|
<% if can?(:manage, account_config) %>
|
|
<%= form_for account_config, url: account_configs_path, method: :post do |f| %>
|
|
<%= f.hidden_field :key %>
|
|
<div class="flex items-center justify-between py-2.5">
|
|
<span>
|
|
<%= t('apply_multiple_pdf_digital_signatures_in_the_document_per_each_signer') %>
|
|
</span>
|
|
<%= f.check_box :value, { class: 'toggle', checked: account_config.value == 'multiple', onchange: 'this.form.requestSubmit()' }, 'multiple', 'single' %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% account_config = AccountConfig.find_or_initialize_by(account: current_account, key: AccountConfig::FLATTEN_RESULT_PDF_KEY) %>
|
|
<% if can?(:manage, account_config) %>
|
|
<%= form_for account_config, url: account_configs_path, method: :post do |f| %>
|
|
<%= f.hidden_field :key %>
|
|
<div class="flex items-center justify-between py-2.5">
|
|
<span>
|
|
<%= t('remove_pdf_form_fillable_fields_from_the_signed_pdf_flatten_form') %>
|
|
</span>
|
|
<%= f.check_box :value, { class: 'toggle', checked: account_config.value != false, onchange: 'this.form.requestSubmit()' } %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|