AuthorizationServerDemos/CSharp/AuthorizationServer/Views/Shared/_ValidationSummary.cshtml
2021-01-18 18:32:22 +03:00

7 lines
192 B
Plaintext

@if (ViewContext.ModelState.IsValid == false)
{
<div class="alert alert-danger">
<strong>Error</strong>
<div asp-validation-summary="All" class="danger"></div>
</div>
}