mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-09 19:42:39 +01:00
17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
@model PrivateViewModel
|
|
@{
|
|
ViewData["Title"] = "Request Private Server";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
<div class="bordered" style="padding:4px">
|
|
<form method="post">
|
|
<label asp-for="ModName"></label>
|
|
<select asp-for="ModName" asp-items="Model.ModNames"></select> <br />
|
|
<label asp-for="Players"></label>
|
|
<input type="number" min="2" max="7" asp-for="Players" /> <br />
|
|
<button asp-route="RequestPrivateServer">Request</button>
|
|
</form>
|
|
</div>
|