HowToPlay.cshtml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @{
  2. ViewData["Title"] = "HowToPlay";
  3. Layout = "~/Views/Shared/_Layout.cshtml";
  4. }
  5. @using LotteryWebApp.Languages;
  6. @using LotteryWebApp.Controllers;
  7. @using LotteryWebApp.Common;
  8. @model ProfileHowToPlay_ViewModel
  9. <div class="app-content content" style="position:relative">
  10. <div class="card-title text-center ">
  11. <div class="news-button-header-container" style="text-align: start; margin: 0 10px;">
  12. @await Component.InvokeAsync("SmallHeader", new { title = Lang.how_to_play.ToUpper() })
  13. </div>
  14. </div>
  15. <div class="content-wrapper buy-ticket-container" >
  16. <div class="content-body">
  17. <section class="flexbox-container">
  18. <div class="row tabs-style" style="margin-top: 30px;">
  19. <div class="col-3 tab-style">
  20. <input type="radio" id="tab-3" name="tab-group-1" @(Model.termType == Constants.GameGroup.Singapore ? "checked" : "")>
  21. <label for="tab-3">
  22. <a href="@ViewBag.MyConfig.MyValue/Profile/HowToPlay?termType=@Constants.GameGroup.Singapore">
  23. LOTTO3
  24. </a>
  25. </label>
  26. </div>
  27. </div>
  28. <div style="margin: 10px;">
  29. @Html.Raw(Question.p4)
  30. </div>
  31. </section>
  32. </div>
  33. </div>
  34. </div>
  35. <script>
  36. stopLoading();
  37. </script>