mirror of
https://github.com/bitwarden/server.git
synced 2025-04-14 09:38:16 -05:00
15 lines
289 B
Plaintext
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>
|
|
}
|