login.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends "layout.html" %}
  2. {% block title %}Login{% endblock %}
  3. {% block description %}Login to Kinbrio{% endblock %}
  4. {% block head %}
  5. <style>
  6. </style>
  7. {% endblock %}
  8. {% block content %}
  9. <div class="container">
  10. <div class="section">
  11. <div class="heading_div">
  12. <h1>Welcome Back</h1>
  13. <h2>Authenticate Securely Using Your <u><a href="https://matrix.org/about/">Matrix</a></u> Account</h2>
  14. <h3>(Or <u><a href="/register">Register Here</a></u>)</h3>
  15. </div>
  16. <div class="row justified">
  17. <div class="content">
  18. <form class="heading_div" id="login_form">
  19. {% for choice in choices %}
  20. <a class="button" style="background:#ffffff" href="{{choice.url}}">
  21. <img decoding="async" loading="lazy" width="32" height="32" alt="{{choice.display}} logo" src="{{ choice.logo }}">
  22. <hr/>
  23. <span>{{choice.display}}</span>
  24. </a>
  25. {% endfor %}
  26. </form>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <script>
  32. window.addEventListener('load', function () {
  33. post_form("login_form", "/login", data => {
  34. return data
  35. }, () => { window.location.href = "/" });
  36. })
  37. </script>
  38. {% endblock %}