mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-29 17:00:28 +01:00
19 lines
335 B
Plaintext
19 lines
335 B
Plaintext
|
|
|||
|
@{
|
|||
|
ViewBag.Title = "Ups. Coś poszło nie tak";
|
|||
|
}
|
|||
|
<div class="text-center" id="error-box">
|
|||
|
@ViewBag.ErrorCode
|
|||
|
</div>
|
|||
|
|
|||
|
|
|||
|
<style>
|
|||
|
#error-box {
|
|||
|
height: 200px;
|
|||
|
line-height: 200px;
|
|||
|
vertical-align: middle;
|
|||
|
color: rgb(0,44,105);
|
|||
|
font-size: 102px;
|
|||
|
font-weight: 800;
|
|||
|
}
|
|||
|
</style>
|