New Article

Find me in app/views/articles/edit.html.erb

<%= simple_form_for @article do |form| %> <%= form.input :title, input_html: {maxlength: 40} %> <%= form.input :url, input_html: {maxlength: 40} %> <%= form.input :body %> <%= form.input :author, input_html: {maxlength: 40} %> <%= form.button :submit %> <% end %>
<%= link_to 'Back', articles_path %>