32 lines
844 B
Text
32 lines
844 B
Text
<% if current_user %>
|
|
<section class="articleshow">
|
|
<h1>New Article</h1>
|
|
<%= link_to 'Back', articles_path %>
|
|
<%= form_with scope: :article, url: articles_path, local: true do |form| %>
|
|
<%= form.label :icon_image, style: "display: block" %>
|
|
<%= form.file_field :icon_image, accept: "image/*" %>
|
|
|
|
<p>
|
|
<%= form.label 'Name' %><br>
|
|
<%= form.text_field :title %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= form.label 'Bio' %><br>
|
|
<%= form.rich_text_area :text %>
|
|
</p>
|
|
<p>
|
|
<%= form.label 'Pronouns' %><br>
|
|
<%= form.rich_text_area :mood %>
|
|
</p>
|
|
<p>
|
|
<%= form.label 'Current Mood' %><br>
|
|
<%= form.rich_text_area :music %>
|
|
</p>
|
|
<p>
|
|
<%= form.submit %>
|
|
</p>
|
|
<% end %> <!-- Closing the form_with block -->
|
|
</section>
|
|
<% end %> <!-- Closing the if current_user block -->
|
|
|