1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-14 09:38:16 -05:00
bitwarden/src/Admin/Views/Shared/Error.cshtml
2018-03-21 13:03:53 -04:00

15 lines
289 B
Plaintext

@model ErrorViewModel
@{
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error</h1>
<p class="text-danger">An error occurred while processing your request.</p>
@if(Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}