Created
February 26, 2018 15:43
-
-
Save justalever/282df420b7cdae2b13af22d0fe958903 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
<%= simple_form_for @tweet do |f| %> | |
<%= f.error_notification %> | |
<div class="field"> | |
<div class="control"> | |
<%= f.input :tweets, label: "Tweeet about it", input_html: { class: "textarea"}, wrapper: false, label_html: {class: "label"}, placeholder: "Compose a new tweeet...", autofocus: true %> | |
</div> | |
</div> | |
<%= f.button :submit, class: "button is-info" %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment