docbrown/app/views/comments/delete_confirm.html.erb
Lisa Sy 36e271e1cb
Deprecate old button stylings with Crayons buttons (#10694) [deploy]
* Deprecate old buttons.scss file

* Replace outdated button styles with Crayons button styling

* Update additional views after removing old button styling

* Update tests

* Update test

* Update test

* Fix button placements
2020-10-14 07:28:41 -07:00

12 lines
474 B
Text

<div class="container delete-confirm">
<h4><%= truncate(sanitize(@comment.processed_html, tags: []), length: 80) %></h4>
<h1>Are you sure you want to delete this comment?</h1>
<h2>You cannot undo this action, perhaps you just want to
<a data-no-instant href="<%= @comment.path %>/edit">EDIT</a> instead?</h2>
<%= form_tag "/comments/#{@comment.id}", method: :delete do %>
<button class="crayons-btn crayons-btn--danger">Delete</button>
<% end %>
</div>