confirm.html 619 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
  3. <head>
  4. <title th:text="#{cas.oauth.confirm.pagetitle}"></title>
  5. </head>
  6. <body id="cas">
  7. <div layout:fragment="content">
  8. <div class="alert alert-success">
  9. <h2 th:text="#{screen.oauth.confirm.header}"/>
  10. <p th:text="#{screen.oauth.confirm.message(${serviceName})}"/>
  11. <p>
  12. <a class="btn btn-submit" id="allow" name="allow"
  13. th:href="@{${callbackUrl}}"
  14. th:text="#{screen.oauth.confirm.allow}"/>
  15. </p>
  16. </div>
  17. </div>
  18. </body>
  19. </html>