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

25 lines
419 B
Text
Raw Normal View History

2026-01-12 17:12:27 +00:00
<section class="articlenew"><h3>Create your blog!</h3>
2026-01-10 16:17:07 +00:00
<%= form_with model: [@member, @blog] do |form| %>
<%= form.label :title %><br />
<%= form.text_area :title %>
<p>
<p>
<%= form.label :links %><br>
<%= form.text_area :links %>
</p>
<p>
<%= form.label :description %><br>
<%= form.rich_text_area :description %>
</p>
<%= form.submit %>
<% end %>
2026-01-12 17:12:27 +00:00
</section>
2026-01-10 16:17:07 +00:00