23 lines
393 B
Text
23 lines
393 B
Text
<main><h3>Create your blog!</h3>
|
|
|
|
<%= 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 %>
|
|
</main>
|
|
|
|
|