IW4M-Admin/WebfrontCore/Views/Action/_ActionForm.cshtml
RaidMax a07ce112b0 ban/unban buttons added to profile
several css tweaks
changed administratorIPs to PrivilegedClients
added time step references to profile page
2018-03-26 23:54:20 -05:00

22 lines
834 B
Plaintext

@model WebfrontCore.ViewModels.ActionInfo
@{
Layout = null;
}
<form class="action-form" action="/Action/@Model.Action">
<div class="input-group mb-3">
@foreach (var input in Model.Inputs)
{
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon-@input.Name">@input.Name</span>
</div>
{
string inputType = input.Type ?? "text";
string value = input.Value ?? "";
<input type="@inputType" name="@input.Name" value="@value" class="form-control" placeholder="@input.Placeholder" aria-label="@input.Name" aria-describedby="basic-addon-@input.Name">
}
}
</div>
<button type="submit" class="btn btn-block btn-primary">@Model.ActionButtonLabel</button>
</form>