dotfiles/app/lib/prymn_web/live/server_live/show.html.heex

26 lines
768 B
Text
Raw Normal View History

2023-06-09 19:13:27 +00:00
<.header>
2023-06-23 07:05:10 +00:00
Server <%= @server.name %>
2023-06-09 19:13:27 +00:00
</.header>
2023-07-09 16:41:41 +00:00
<section :if={@server.status == :unregistered} class="my-10">
2023-06-23 07:05:10 +00:00
<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">
2023-07-09 16:41:41 +00:00
<%= @registration_command %>
2023-06-23 07:05:10 +00:00
</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>
2023-06-09 19:13:27 +00:00
<.back navigate={~p"/servers"}>Back to servers</.back>