ensl.org/app/views/comments/_new.html.erb
Luke Barratt 8020b06f45 Updates to matches page
Tweaked layout for contest page
Various styling updates
2014-04-21 19:19:03 +01:00

23 lines
638 B
Text

<div id="reply" class="comment-form">
<h5>New Comment</h5>
<% if cuser %>
<%= form_for(@comment, remote: true) do |f| %>
<ul>
<% @comment.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
<%= f.hidden_field :commentable_id %>
<%= f.hidden_field :commentable_type %>
<div class="fields">
<%= f.text_area :text, rows: 5 %>
</div>
<div class="controls">
<%= f.submit 'Post Comment' %>
</div>
<% end %>
<% else %>
Please log in or <%= link_to "register", new_user_path %> to post comments.
<% end %>
</div>