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

31 lines
498 B
Text
Raw Normal View History

2026-08-24 20:12:41 +00:00
<section class="articlenew">
<h2>New Post</h2>
<%= form_with model: [@profile, @blog, @post], multipart: true do |f| %>
<%= f.label :title %>
<%= f.text_area :title %>
<%= f.label :body %>
<%= f.rich_text_area :body %>
<%= f.label :mood %>
<%= f.text_area :mood %>
<%= f.label :music %>
<%= f.text_area :music %>
<%= f.label :icon_image %>
<%= f.file_field :icon_image %>
<%= f.submit "Create Post" %>
<% end %>
</section>