kumify/frontend/templates/registration/base.html
Kumi f5df828403 Add registration form
Prepare for closed registrations (will be default probably)
2020-12-31 22:17:02 +01:00

33 lines
834 B
HTML

{% include "frontend/header.html" %}
<body class="bg-gradient-primary">
<div class="container">
<!-- Outer Row -->
<div class="row justify-content-center">
<div class="col-xl-10 col-lg-12 col-md-9">
<div class="card o-hidden border-0 shadow-lg my-5">
<div class="card-body p-0">
<!-- Nested Row within Card Body -->
<div class="row">
<div class="col-lg-6 d-none d-lg-block bg-login-image"></div>
<div class="col-lg-6">
{% block content %}
{% endblock %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% include "frontend/footer.html" %}