sign-in-cover.html 905 B

12345678910111213141516171819202122232425262728
  1. ---
  2. layout: base
  3. title: Sign in with cover
  4. body-class: d-flex flex-column bg-white
  5. ---
  6. <div class="row g-0 flex-fill">
  7. <div class="col-12 col-lg-6 col-xl-4 border-top-wide border-primary d-flex flex-column justify-content-center">
  8. <div class="container container-tight my-5 px-lg-5">
  9. <div class="text-center mb-4">
  10. <a href="{{ base }}" class="navbar-brand navbar-brand-autodark"><img src="{{ base }}/assets/static/logo.svg" height="36" alt=""></a>
  11. </div>
  12. <h2 class="h3 text-center mb-3">
  13. Login to your account
  14. </h2>
  15. {% include "forms/sign-in.html" %}
  16. <div class="text-center text-secondary mt-3">
  17. Don't have account yet? <a href="{{ base }}/sign-up.html" tabindex="-1">Sign up</a>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="col-12 col-lg-6 col-xl-8 d-none d-lg-block">
  22. {% include "ui/photo.html" id=11 class="bg-cover h-100 min-vh-100" background=true %}
  23. </div>
  24. </div>