裕隆城折扣合作@中興低碳 折扣報表
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

30 líneas
1.2KB

  1. @model LaneFlowReport.Models.LoginViewModel
  2. <div class="container text-center mt-5">
  3. <h1 class="display-4">@ViewBag.Title</h1>
  4. </div>
  5. <form method="post" class="mt3">
  6. <div class="form-group">
  7. <label for="Username">使用者名稱:</label>
  8. <input type="text" id="Username" name="Username" class="form-control small" placeholder="請輸入帳號" value="@Model.Username" required />
  9. </div>
  10. <div class="form-group">
  11. <label for="Password">密碼:</label>
  12. <input type="password" id="Password" name="Password" class="form-control small" required />
  13. </div>
  14. <div class="text-center mt-2">
  15. <button type="submit" class="btn btn-primary mx-1">登入</button>
  16. <button id="loginBtn" type="button" class="btn btn-secondary">Line</button>
  17. </div>
  18. @if (ViewData.ModelState.ErrorCount > 0)
  19. {
  20. <div style="color:red;">@Html.ValidationSummary()</div>
  21. }
  22. </form>
  23. <script>
  24. document.getElementById("loginBtn").addEventListener("click", function () {
  25. const currentUrl = `${location.origin}/Login/LoginCallback`;
  26. location.href = '@ViewBag.OauthUrl' + `?redirect_uri=${currentUrl}`;
  27. });
  28. </script>