| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- @{
- ViewData["Title"] = "Choose App";
- Layout = "~/Views/Shared/_NothingLayout.cshtml";
- }
- <style>
- body {
- /* Background same as login or custom */
- background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%) !important;
- color: white;
- }
- .choose-wrapper {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- padding: 20px;
- }
- .logo-header {
- margin-bottom: 40px;
- text-align: center;
- }
- .logo-header img {
- max-width: 150px;
- }
- .grid-container {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 20px;
- width: 100%;
- max-width: 400px;
- }
- .module-card {
- background: rgba(255, 255, 255, 0.1);
- backdrop-filter: blur(10px);
- border: 1px solid rgba(255, 255, 255, 0.2);
- border-radius: 16px;
- padding: 25px 15px;
- text-align: center;
- transition: transform 0.2s, background 0.2s;
- cursor: pointer;
- display: flex;
- flex-direction: column;
- align-items: center;
- text-decoration: none !important;
- color: white !important;
- }
- .module-card:hover {
- transform: translateY(-5px);
- background: rgba(255, 255, 255, 0.15);
- border-color: #FF8603;
- }
- .module-icon {
- font-size: 35px;
- margin-bottom: 15px;
- }
- .module-title {
- font-size: 14px;
- font-weight: 600;
- }
- .module-sub {
- font-size: 11px;
- color: #ccc;
- margin-top: 5px;
- }
- </style>
- <div class="choose-wrapper animate__animated animate__fadeIn">
- <div class="logo-header">
- <img src="~/img/Group 83968 (1).png" />
- <h5 class="mt-3">Chào mừng bạn trở lại!</h5>
- <p class="text-muted small">Hãy chọn ứng dụng bạn muốn trải nghiệm</p>
- </div>
- <div class="grid-container">
- <!-- Website Cũ -->
- <a href="/Home" class="module-card">
- <div class="module-title">Website Gốc</div>
- </a>
- <!-- LotteryV2 -->
- <a href="/LotteryV2/Home" class="module-card">
- <div class="module-title">LotteryV2</div>
- </a>
- </div>
- </div>
|