2023-01-25 22:14:17 -05:00
|
|
|
<main class="pb-8 min-w-full">
|
2022-02-13 21:28:20 -05:00
|
|
|
<header>
|
2022-02-25 21:39:22 -05:00
|
|
|
<.topbar current_user={assigns[:current_user]}></.topbar>
|
|
|
|
|
|
|
|
<div class="mx-8 my-2 flex flex-col space-y-4 text-center">
|
|
|
|
<%= if @flash && @flash |> Map.has_key?("info") do %>
|
|
|
|
<p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
|
|
|
|
<%= live_flash(@flash, "info") %>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= if @flash && @flash |> Map.has_key?("error") do %>
|
|
|
|
<p
|
|
|
|
class="alert alert-danger"
|
|
|
|
role="alert"
|
|
|
|
phx-click="lv:clear-flash"
|
|
|
|
phx-value-key="error"
|
|
|
|
>
|
|
|
|
<%= live_flash(@flash, "error") %>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2022-02-13 21:28:20 -05:00
|
|
|
</header>
|
2022-02-25 21:39:22 -05:00
|
|
|
|
|
|
|
<div class="mx-4 sm:mx-8 md:mx-16">
|
|
|
|
<%= @inner_content %>
|
|
|
|
</div>
|
2022-01-22 13:01:36 -05:00
|
|
|
</main>
|
2022-02-25 21:39:22 -05:00
|
|
|
|
|
|
|
<div
|
|
|
|
id="disconnect"
|
2023-01-25 21:00:34 -05:00
|
|
|
class="z-50 fixed opacity-0 bottom-12 right-12 px-8 py-4 w-max h-max
|
|
|
|
border border-primary-200 shadow-lg rounded-lg bg-white
|
|
|
|
flex justify-center items-center space-x-4
|
|
|
|
transition-opacity ease-in-out duration-500 delay-[2000ms]"
|
2022-02-25 21:39:22 -05:00
|
|
|
>
|
2023-01-25 21:00:34 -05:00
|
|
|
<i class="fas fa-fade text-md fa-satellite-dish"></i>
|
|
|
|
|
|
|
|
<h1 class="title text-md title-primary-500">
|
2022-02-25 21:39:22 -05:00
|
|
|
<%= gettext("Reconnecting...") %>
|
|
|
|
</h1>
|
|
|
|
</div>
|