Created
May 23, 2015 20:32
-
-
Save erolg/55b40b154d7d5c5100b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="ui secondary segment"> | |
<div class="field"> | |
<%= f.label :title %> | |
<%= f.text_field :title %> | |
</div> | |
<div class="field"> | |
<%= f.label :content %> | |
<%= f.text_area :content, as: :text%> | |
</div> | |
<div class="three wide field"> | |
<%= f.label :deadline %> | |
<%= f.datetime_select :deadline, as: :datetime %> | |
</div> | |
<%= f.submit class: "ui submit blue button" %> | |
<% end %> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment