NBloodServerSupervisor/WebInterface/Views/Private/Result.cshtml
CommonLoon102 3af4c9dfc7
add option to play custom maps on private servers (#9)
* add option to play custom maps on private servers

* don't show every exception to the end-user

* hash the IPs

* add description about the purpose of the public custom map list

* add punctuation to error messages
2020-01-29 15:32:23 +00:00

19 lines
550 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>At least 1 person must join in 10 minutes, otherwise the server will be killed.</p>
<p>If you have provided a custom map, you have to type its name in the user map section when starting a new game.</p>
}
else
{
<p>Error: @Model.ErrorMessage</p>
}
</div>