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.
12 lines
421 B
12 lines
421 B
<%= render 'shared/turbo_modal', title: 'New Flow' do %>
|
|
<%= form_for @flow, data: { turbo_frame: :_top } do |f| %>
|
|
<div class="form-control">
|
|
<%= f.label :name, 'Flow name', class: 'label' %>
|
|
<%= f.text_field :name, required: true, class: 'base-input' %>
|
|
</div>
|
|
<div class="form-control mt-4">
|
|
<%= f.button button_title('Create'), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|