analytics/lib/plausible_web/templates/error/404_error.html.eex
Uku Taht da3d4366f6
Add login link to 404 page (#3288)
* Add login link to 404 page

* Fix 404 test

* Fix another test
2023-08-22 08:45:38 +02:00

10 lines
585 B
Elixir

<div class="container flex flex-col items-center text-center mt-24">
<h1 class="text-5xl font-black dark:text-gray-100"><%= @status %></h1>
<div class="mt-4 text-xl dark:text-gray-100">Oops! There's nothing here</div>
<div class="text-xl dark:text-gray-100">Trying to access your dashboard? You may need to log in again to see it</div>
<div class="mt-6 flex">
<%= link("Login", to: Routes.auth_path(@conn, :login_form), class: "button") %>
<%= link("Go to homepage", to: PlausibleWeb.LayoutView.home_dest(@conn), class: "button button-outline ml-2") %>
</div>
</div>