-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add thank you page after reporting a comment
- Loading branch information
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<% content_for :page_title, "Report a comment" %> | ||
|
||
<div class="mb-8"> | ||
<%= pa_link_to "< Back to application", @comment.application, class: "text-2xl" %> | ||
</div> | ||
|
||
<%= render Tailwind::Heading.new(tag: :h1) do %> | ||
<%= yield :page_title %> | ||
<% end %> | ||
|
||
<div class="flex flex-col items-center gap-8 px-20 py-12 mt-16 text-2xl lg:flex-row text-navy bg-light-grey"> | ||
<div> | ||
<p> | ||
Thank you! | ||
</p> | ||
|
||
<p class="mt-6"> | ||
The comment has been reported and a moderator will look into it as soon as possible. | ||
</p> | ||
|
||
<p class="mt-6"> | ||
Thanks for taking the time let us know about this. | ||
</p> | ||
</div> | ||
<%= image_tag "tailwind/illustration/thank_you.svg", alt: "Illustration of a woman giving a thumbs up" %> | ||
</div> |