OneConversorTemplate/UpperFirstLetter/Views/Shared/Error.cshtml
2025-06-08 18:00:23 -03:00

16 lines
341 B
Plaintext

@model string
@{
ViewData["Title"] = "Error";
}
<div class="container py-5">
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (!string.IsNullOrEmpty(Model))
{
<p>
<strong>Error details:</strong> @Model
</p>
}
</div>