28 lines
539 B
Text
28 lines
539 B
Text
<%= form_with model: @article do |form| %>
|
|
<% if form.object.errors.any? %>
|
|
<p class="error"><%= form.object.errors.full_messages.first %></p>
|
|
<% end %>
|
|
|
|
|
|
<p>
|
|
<%= form.label :title %><br>
|
|
<%= form.text_field :title %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= form.label :text %><br>
|
|
<%= form.rich_textarea :text %>
|
|
</p>
|
|
<p>
|
|
<%= form.label :mood %><br>
|
|
<%= form.rich_textarea :mood %>
|
|
</p>
|
|
<p>
|
|
<%= form.label :music %><br>
|
|
<%= form.rich_textarea :music %>
|
|
</p>
|
|
<p>
|
|
<%= form.submit %>
|
|
</p>
|
|
|
|
<% end %>
|