<% @page_title = "Create a new Workflow" %> <% content_for :header do %> <% end %> <%= turbo_frame_tag :workflows do %>
<%= form_with model: @workflow, url: workflows_path do |form| %> <%= form.text_field :name, required: true, autofocus: true, class: "input txt-large", placeholder: "Name your Workflow…" %> <%= form.button type: :submit, class: "btn btn--reversed center margin-block-start txt-large" do %> <%= image_tag "check.svg", aria: { hidden: true }, size: 24 %> Create Workflow <% end %> <% end %>
<% end %>