Added service record functionality.

This commit is contained in:
ivancheahhh
2024-01-01 12:01:05 -07:00
parent 9f195e44a2
commit 28268cffd5
124 changed files with 15251 additions and 29 deletions

View File

@@ -6,7 +6,9 @@
<title>@ViewData["Title"] - CarCareTracker</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap-icons.css" />
<link rel="stylesheet" href="~/lib/bootstrap-datepicker/css/bootstrap-datepicker.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/sweetalert/sweetalert2.min.css" asp-append-version="true" />
<link rel="stylesheet" href="~/CarCareTracker.styles.css" asp-append-version="true" />
</head>
<body>
@@ -22,7 +24,10 @@
</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/js/shared.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/lib/bootstrap-datepicker/js/bootstrap-datepicker.min.js"></script>
<script src="~/sweetalert/sweetalert2.all.min.js"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>