sso_auth_confirm.html 943 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Confirm it's you</title>
  6. <meta name="viewport" content="width=device-width, user-scalable=no">
  7. <style type="text/css">
  8. {% include "sso.css" without context %}
  9. </style>
  10. </head>
  11. <body>
  12. <header>
  13. <h1>Confirm it's you to continue</h1>
  14. <p>
  15. A client is trying to {{ description }}. To confirm this action
  16. re-authorize your account with single sign-on.
  17. </p>
  18. <p><strong>
  19. If you did not expect this, your account may be compromised.
  20. </strong></p>
  21. </header>
  22. <main>
  23. <a href="{{ redirect_url }}" class="primary-button">
  24. Continue with {{ idp.idp_name }}
  25. </a>
  26. </main>
  27. {% include "sso_footer.html" without context %}
  28. </body>
  29. </html>