Error403.cshtml 469 B

123456789101112
  1. <div class="container d-flex flex-row-fluid flex-column justify-content-md-center p-12">
  2. <h1 class="error-title font-weight-boldest text-info mt-10 mt-md-0 mb-12">
  3. 403
  4. </h1>
  5. <p class="font-weight-boldest display-4">
  6. @L("UnAuthorizedOperation")
  7. </p>
  8. <p class="font-size-h3">
  9. @L("YouAreNotAuthorizedToPerformThisOperation")<br>
  10. <a href="@Url.Action("Index", "Home")" class="link">@L("HomePage")</a>.
  11. </p>
  12. </div>