mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
8 lines
356 B
Plaintext
8 lines
356 B
Plaintext
<%= form_for ShareComment.new do |f| %>
|
|
<div class="input-field comment-form">
|
|
<%= f.label :message, 'Leave a message' %>
|
|
<%= f.hidden_field :content_page_share_id, value: share.id %>
|
|
<%= f.text_area :message, class: 'materialize-textarea' %>
|
|
<%= f.submit 'Comment', class: 'btn right green white-text submit-button' %>
|
|
</div>
|
|
<% end %> |