This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/blogposts/new.html.erb
2014-04-28 03:01:33 +02:00

8 lines
288 B
Plaintext

<h1>New Post</h1>
<%= form_for @post do |f|%>
<%= f.text_field :title, placeholder: "Title" %>
<%= render partial: "mdhelp" %>
<%= f.text_area :content, placeholder: "Text", input_html: {class: "vertical"} %>
<p><%= f.submit "Create Post", class: "btn blue left" %></p>
<% end %>