al13ntown/app/views/blogs/new.html.erb

21 lines
328 B
Text
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
<section class="articlenew"><h3>Create your blog!</h3>
<%= form_with model: [@profile, @blog] do |form| %>
<%= form.label :title %><br />
<%= form.text_area :title %>
<p>
<p>
<%= form.label :topic %><br>
<%= form.rich_text_area :topic %>
</p>
<%= form.submit %>
<% end %>
</section>