1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-26 00:05:27 +01:00
RSystem-MVC-Fork/RSystem/Views/Error/Index.cshtml
2018-04-17 11:20:49 +02:00

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>