mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 19:22:45 +01:00
18 lines
373 B
Plaintext
18 lines
373 B
Plaintext
|
@model StartServerResponse
|
||
|
@{
|
||
|
ViewData["Title"] = "Your Private Server";
|
||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||
|
}
|
||
|
|
||
|
<div class="bordered">
|
||
|
@if (Model.IsSuccess)
|
||
|
{
|
||
|
<p>Command: <span class="code">@Model.CommandLine</span></p>
|
||
|
<p>You have 10 minutes to join.</p>
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
<p>Error: @Model.ErrorMessage</p>
|
||
|
}
|
||
|
</div>
|