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
561 B
14 lines
561 B
<%= render 'shared/turbo_modal', title: t('new_token') do %>
|
|
<%= form_for @mcp_token, url: settings_mcp_index_path, method: :post, html: { autocomplete: 'off' }, data: { turbo_frame: :_top } do |f| %>
|
|
<div class="space-y-4">
|
|
<div class="w-full">
|
|
<%= f.label :name, t('name'), class: 'label' %>
|
|
<%= f.text_field :name, required: true, class: 'base-input w-full', dir: 'auto' %>
|
|
</div>
|
|
<div class="form-control pt-2">
|
|
<%= f.button button_title, class: 'base-button' %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|