Brak opisu

mfa_verify.html 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends "layouts/static-default.html" %}
  2. {% block title %} MFA Verify {% endblock title %}
  3. {% block stylesheets %}
  4. <link rel="stylesheet" href="/static/assets/css/bootstrap.min.css">
  5. <link rel="stylesheet" href="/static/assets/css/atlantis.css">
  6. <link rel="stylesheet" href="/static/assets/css/login.css">
  7. {% endblock stylesheets %}
  8. {% block content %}
  9. <div class="content-full">
  10. <div class="wrapper row">
  11. <div class="radial-bg-primary col-xs-12 col-md-8">
  12. <div class="d-flex flex-column justify-content-center align-items-center" style="height: 100%;">
  13. <div class="login__logo">
  14. <img src="/static/assets/img/logo-white.png" class="flicker">
  15. </div>
  16. </div>
  17. <span class="text-white text-center mt-4">{{ login_banner|replace('\n', '<br>')|safe }}</span>
  18. </div>
  19. <div class="col-xs-12 col-md-4">
  20. <div class="d-flex flex-column justify-content-center align-items-center" style="height: 100%;">
  21. <h3 class="login__form_title">Verify MFA</h3>
  22. <p>Enter the token displayed on your authentication app</p>
  23. <form method="POST" action="">
  24. <div class="col-md-12 col-lg-12 col-sm-12">
  25. <div class="form-row ml-2">
  26. <div class="form-group col-12">
  27. {{ form.hidden_tag() }}
  28. <label for="token">Token</label>
  29. {{ form.token(size=32, class="form-control") }}
  30. </div>
  31. </div>
  32. <div class="form-row ml-2">
  33. <div class="form-group col-6">
  34. <button type="submit" class="btn btn-primary">Submit</button>
  35. </div>
  36. </div>
  37. </div>
  38. </form>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. {% endblock content %}
  44. {% block javascripts %}
  45. {% endblock javascripts %}