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.
25 lines
998 B
25 lines
998 B
<%= render 'shared/turbo_modal', title: 'Upload Certificate' do %>
|
|
<%= form_for @cert_record, url: settings_esign_path, html: { class: 'space-y-4', enctype: 'multipart/form-data' }, data: { turbo_frame: :_top } do |f| %>
|
|
<div class="space-y-2">
|
|
<div class="form-control">
|
|
<%= f.label :name, class: 'label' %>
|
|
<%= f.text_field :name, required: true, class: 'base-input' %>
|
|
</div>
|
|
<div class="form-control">
|
|
<%= f.label :file, class: 'label' %>
|
|
<%= f.file_field :file, required: true %>
|
|
<label class="label">
|
|
<span class="label-text-alt">Use a valid .der, .p12 or .pfx file.</span>
|
|
</label>
|
|
</div>
|
|
<div class="form-control">
|
|
<%= f.label :password, 'Password (optional)', class: 'label' %>
|
|
<%= f.text_field :password, class: 'base-input' %>
|
|
</div>
|
|
</div>
|
|
<div class="form-control pt-2">
|
|
<%= f.button button_title, class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|