mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 10:02:10 +03:00
70997abfc7
* Turn .eex templates into .heex * Add new compile-time presets to `PlausibleWeb` * Fix remaining templates * Update static components * Update live components * Update live views * Update rest of the owl * Update mjml template * Format * Format * Revert MJML stuff, it's coupled with EEx * yawn at test * Get rid of `FormHelpers` module * Ensure YOU label shows up first on IP rules list * Update lib/plausible_web/templates/email/welcome_email.html.heex Co-authored-by: Artur Pata <artur.pata@gmail.com> * Fix create site email link * Fix server error markup (and turn thanks into heex) * Format --------- Co-authored-by: Artur Pata <artur.pata@gmail.com>
14 lines
612 B
Plaintext
14 lines
612 B
Plaintext
<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">
|
|
<.button_link href={Routes.auth_path(@conn, :login_form)} class="mr-4">Log in</.button_link>
|
|
<.button_link theme="bright" href={PlausibleWeb.LayoutView.home_dest(@conn)}>
|
|
Go to homepage
|
|
</.button_link>
|
|
</div>
|
|
</div>
|