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/info/new.html.erb
2014-04-28 03:01:33 +02:00

7 lines
295 B
Plaintext

<h1>New Info</h1>
<%= form_for @info, url: info_index_path do |f|%>
<%= f.text_field :title, placeholder: "Title" %>
<%= render partial: "mdhelp" %>
<%= f.text_area :content, placeholder: "Text", class: "vertical" %>
<p><%= f.submit "Create Info", class: "btn blue left" %></p>
<% end %>