Files
once-campfire/app/views/accounts/bots/new.html.erb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

14 lines
369 B
Plaintext

<% @page_title = "New chat bot" %>
<% content_for :nav do %>
<div class="flex-item-justify-start">
<%= link_back_to account_bots_path %>
</div>
<% end %>
<section class="panel">
<%= form_with model: @bot, url: account_bots_path, class: "flex flex-column gap" do |form| %>
<%= render "accounts/bots/form", form: form, bot: @bot %>
<% end %>
</section>