30 lines
498 B
Text
30 lines
498 B
Text
|
|
<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>
|
|
|
|
|