裕隆城折扣合作@中興低碳 折扣報表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.9KB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>CouponReport</title>
  7. <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
  8. <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
  9. <link rel="stylesheet" href="~/CouponReport.styles.css" asp-append-version="true" />
  10. </head>
  11. <body>
  12. <header>
  13. <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
  14. <div class="container-fluid">
  15. <a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">首頁</a>
  16. @if (User.Identity?.IsAuthenticated == true)
  17. {
  18. <div class="ms-auto">
  19. <form method="post" asp-controller="Home" asp-action="Logout" style="display: inline;">
  20. @Html.AntiForgeryToken()
  21. <button type="submit" class="btn btn-outline-secondary">
  22. <i class="bi bi-box-arrow-right"></i> 登出
  23. </button>
  24. </form>
  25. </div>
  26. }
  27. </div>
  28. </nav>
  29. </header>
  30. <div class="container-fluid px-4">
  31. <main role="main" class="pb-3">
  32. @RenderBody()
  33. </main>
  34. </div>
  35. <footer class="border-top footer text-muted">
  36. <div class="container-fluid px-4">
  37. &copy; 2025 - 折扣報表系統
  38. </div>
  39. </footer>
  40. <script src="~/lib/jquery/dist/jquery.min.js"></script>
  41. <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
  42. <script src="~/js/site.js" asp-append-version="true"></script>
  43. @await RenderSectionAsync("Scripts", required: false)
  44. </body>
  45. </html>