casPasswordlessGetUserIdView.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
  3. <head>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
  6. <title th:text="#{cas.login.pagetitle}">Passwordless Get User Id View</title>
  7. <link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
  8. </head>
  9. <body>
  10. <main role="main" class="container mt-3 mb-3">
  11. <div layout:fragment="content" id="login">
  12. <form method="post" id="fm1" class="fm-v clearfix" th:action="@{/login}">
  13. <div class="form-group">
  14. <label for="username" th:utext="#{screen.welcome.label.netid}"><span class="accesskey">U</span>sername:</label>
  15. <input class="form-control"
  16. type="password"
  17. id="username"
  18. name="username"
  19. size="25"
  20. tabindex="2"
  21. th:accesskey="#{screen.welcome.label.netid.accesskey}"
  22. autocomplete="off"
  23. required/>
  24. <div>
  25. <p/>
  26. </div>
  27. <input class="btn btn-submit" accesskey="l"
  28. th:value="#{screen.welcome.button.login}" tabindex="4" type="submit" value="LOGIN"/>
  29. </div>
  30. <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
  31. <input type="hidden" name="_eventId" value="submit"/>
  32. </form>
  33. </div>
  34. </main>
  35. </body>
  36. </html>