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.
21 lines
910 B
21 lines
910 B
<div class="flex flex-wrap space-y-4 md:flex-nowrap md:space-y-0">
|
|
<%= render 'shared/settings_nav' %>
|
|
<div class="flex-grow max-w-xl mx-auto">
|
|
<h1 class="text-4xl font-bold mb-4">eSign</h1>
|
|
<p>
|
|
Upload your electronic signature
|
|
</p>
|
|
<%= form_for '', url: settings_esign_index_path, method: :post do |f| %>
|
|
<file-dropzone data-name="verify_attachments" class="">
|
|
<label for="file">
|
|
<input id="attachment_uuid" name="attachment_uuid" class="hidden" data-target="file-dropzone.valueField" type="text" autocomplete="off">
|
|
<input id="file" class="hidden" data-action="change:file-dropzone#onSelectFiles" data-target="file-dropzone.input" type="file">
|
|
Cick to upload
|
|
</label>
|
|
</file-dropzone>
|
|
<%= f.button button_title(title: 'Save', disabled_with: 'Saving') %>
|
|
<% end %>
|
|
</div>
|
|
<div class="w-0 md:w-52"></div>
|
|
</div>
|