dotfiles/app/lib/prymn_web/live/server_live/show.html.heex
2023-07-19 23:24:24 +03:00

25 lines
768 B
Text

<.header>
Server <%= @server.name %>
</.header>
<section :if={@server.status == :unregistered} class="my-10">
<p class="mb-9">
Connect to your server using root credentials and execute the following command:
</p>
<div class="group inline-flex items-center rounded-lg bg-gray-800 p-4 pl-6 text-white">
<code class="flex gap-4">
<span class="select-none text-gray-500">#</span>
<span class="flex-1">
<%= @registration_command %>
</span>
</code>
<button type="button" tabindex="-1">
<.icon
name="hero-document-duplicate-solid"
class="invisible ml-4 animate-bounce text-gray-500 group-hover:visible"
/>
</button>
</div>
</section>
<.back navigate={~p"/servers"}>Back to servers</.back>