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.
13 lines
643 B
13 lines
643 B
<%= render 'shared/turbo_modal', title: 'Move Into Folder' do %>
|
|
<%= form_for '', url: template_folder_path(@template), method: :put, data: { turbo_frame: :_top }, html: { autocomplete: :off } do |f| %>
|
|
<div class="form-control my-6">
|
|
<folder-autocomplete class="block" data-submit-on-select="true">
|
|
<%= f.text_field :name, required: true, placeholder: 'New Folder Name...', class: 'base-input w-full', autofocus: true %>
|
|
</folder-autocomplete>
|
|
</div>
|
|
<div class="form-control">
|
|
<%= f.button button_title(title: 'Move', disabled_with: 'Moving'), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|