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.
14 lines
551 B
14 lines
551 B
<%= render 'shared/turbo_modal', title: 'New Template' do %>
|
|
<%= form_for @template, data: { turbo_frame: :_top } do |f| %>
|
|
<% if @base_template %>
|
|
<%= hidden_field_tag :base_template_id, @base_template.id %>
|
|
<% end %>
|
|
<div class="form-control my-6">
|
|
<%= f.text_field :name, required: true, placeholder: 'Template Name', class: 'base-input' %>
|
|
</div>
|
|
<div class="form-control mt-4">
|
|
<%= f.button button_title(title: 'Create', disabled_with: 'Creating'), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|