ChooseApp.cshtml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @{
  2. ViewData["Title"] = "Choose App";
  3. Layout = "~/Views/Shared/_NothingLayout.cshtml";
  4. }
  5. <style>
  6. body {
  7. /* Background same as login or custom */
  8. background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%) !important;
  9. color: white;
  10. }
  11. .choose-wrapper {
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: center;
  15. align-items: center;
  16. min-height: 100vh;
  17. padding: 20px;
  18. }
  19. .logo-header {
  20. margin-bottom: 40px;
  21. text-align: center;
  22. }
  23. .logo-header img {
  24. max-width: 150px;
  25. }
  26. .grid-container {
  27. display: grid;
  28. grid-template-columns: repeat(2, 1fr);
  29. gap: 20px;
  30. width: 100%;
  31. max-width: 400px;
  32. }
  33. .module-card {
  34. background: rgba(255, 255, 255, 0.1);
  35. backdrop-filter: blur(10px);
  36. border: 1px solid rgba(255, 255, 255, 0.2);
  37. border-radius: 16px;
  38. padding: 25px 15px;
  39. text-align: center;
  40. transition: transform 0.2s, background 0.2s;
  41. cursor: pointer;
  42. display: flex;
  43. flex-direction: column;
  44. align-items: center;
  45. text-decoration: none !important;
  46. color: white !important;
  47. }
  48. .module-card:hover {
  49. transform: translateY(-5px);
  50. background: rgba(255, 255, 255, 0.15);
  51. border-color: #FF8603;
  52. }
  53. .module-icon {
  54. font-size: 35px;
  55. margin-bottom: 15px;
  56. }
  57. .module-title {
  58. font-size: 14px;
  59. font-weight: 600;
  60. }
  61. .module-sub {
  62. font-size: 11px;
  63. color: #ccc;
  64. margin-top: 5px;
  65. }
  66. </style>
  67. <div class="choose-wrapper animate__animated animate__fadeIn">
  68. <div class="logo-header">
  69. <img src="~/img/Group 83968 (1).png" />
  70. <h5 class="mt-3">Chào mừng bạn trở lại!</h5>
  71. <p class="text-muted small">Hãy chọn ứng dụng bạn muốn trải nghiệm</p>
  72. </div>
  73. <div class="grid-container">
  74. <!-- Website Cũ -->
  75. <a href="/Home" class="module-card">
  76. <div class="module-title">Website Gốc</div>
  77. </a>
  78. <!-- LotteryV2 -->
  79. <a href="/LotteryV2/Home" class="module-card">
  80. <div class="module-title">LotteryV2</div>
  81. </a>
  82. </div>
  83. </div>