| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @{
- ViewData["Title"] = "BuyTicket";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- @using LotteryWebApp.Languages;
- @using LotteryWebApp.Controllers;
- @using LotteryWebApp.Common;
- @model BuyTicket_ViewModel
- <div class="app-content content" style="position:relative">
- <div class="card-title text-center ">
- <div class="news-button-header-container" style="text-align: start; margin: 0 10px;">
- @await Component.InvokeAsync("SmallHeader", new { title = Lang.buy_ticket.ToUpper()})
- </div>
- </div>
- <div class=" buy-ticket-container">
- <div class="content-body">
- <section class="flexbox-container">
- <div class="row tabs-style" >
- <div class="col-12 tab-style ">
- <label for="tab-1" >
- <a href="#" class="">
- Singapore
- </a>
- </label>
- </div>
- </div>
- <div id="last-term-result-data" style="margin-bottom:20px;">
- </div>
- <script>
- var countPage = 1;
- getLastTermResultData(@Model.termType, countPage);
- </script>
- </section>
- </div>
- </div>
- </div>
- <script>
- stopLoading();
- </script>
|