1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/IdentityServer/Views/Error/HttpGeneral.cshtml
2018-10-25 22:22:53 -07:00

17 lines
470 B
Plaintext

@model Teknik.IdentityServer.ViewModels.ErrorViewModel
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="error-template text-center">
<h1>Http Error</h1>
<h2>Status Code: @Model.StatusCode</h2>
<div class="error-details">
Sorry, an error has occured: @Model.Description
</div>
</div>
</div>
</div>
</div>