_Empty.cshtml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @using Microsoft.AspNetCore.Authorization
  2. @inject IAuthorizationService AuthorizationService
  3. <!DOCTYPE html>
  4. <html lang="de">
  5. <head>
  6. <meta charset="utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10. <title>@ViewData["Title"] - Strohrmann ERP Login</title>
  11. <!-- Bootstrap core CSS -->
  12. <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
  13. <!-- FontAwesome core CSS -->
  14. <link rel="stylesheet" href="~/lib/font-awesome/css/all.min.css" />
  15. <!-- FontAwesome CSS -->
  16. <link rel="stylesheet" href="~/lib/font-awesome/css/fontawesome.min.css" />
  17. <!-- jQueryUI CSS -->
  18. <link rel="stylesheet" href="~/lib/jqueryui/jquery-ui.min.css" />
  19. <!-- Custom page CSS -->
  20. <link rel="stylesheet" href="~/css/site.css" />
  21. <!-- Custom styles for this template -->
  22. <link rel="stylesheet" href="~/css/simple-sidebar.css" />
  23. </head>
  24. <body style="background-color: #f5f5f5">
  25. <!-- jQuery core JavaScript -->
  26. <script src="~/lib/jquery/dist/jquery.min.js"></script>
  27. <!-- Bootstrap core JavaScript -->
  28. <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
  29. <!-- jQuery UI JavaScript -->
  30. <script src="~/lib/jqueryui/jquery-ui.min.js"></script>
  31. <!-- DataTables JavaScript -->
  32. <script src="~/lib/datatables/js/jquery.dataTables.min.js"></script>
  33. <script src="~/lib/datatables/js/dataTables.bootstrap4.min.js"></script>
  34. <!-- application core JavaScript -->
  35. <script src="~/js/site.js" asp-append-version="true"></script>
  36. @RenderSection("Scripts", required: false)
  37. <div class="d-flex" id="wrapper">
  38. <!-- Page Content -->
  39. <div id="page-content-wrapper">
  40. <nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom" style="height: 42px">
  41. </nav>
  42. <div class="container-fluid">
  43. @RenderBody()
  44. </div>
  45. </div>
  46. <!-- /#page-content-wrapper -->
  47. </div>
  48. <!-- /#wrapper -->
  49. </body>
  50. </html>