aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/templates/allauth/layouts/entrance.html
blob: 5d86b2ea77d5ac8c1953b6ce75142399216f56a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends "base.html" %}

{% load allauth %}

{% load i18n %}

{% block bodyclass %}
  bg-light
{% endblock bodyclass %}
{% block css %}
  {{ block.super }}
{% endblock css %}
{% block title %}
  {% block head_title %}
    {% trans "Sign In" %}
  {% endblock head_title %}
{% endblock title %}
{% block body %}
  <div class="d-flex justify-content-center h-100 py-4">
    <div class="col-md-4 py-4 my-4 px-4">
      {% if messages %}
        {% for message in messages %}
          <div class="alert alert-dismissible {% if message.tags %}alert-{{ message.tags }}{% endif %}">
            {{ message }}
            <button type="button"
                    class="btn-close"
                    data-bs-dismiss="alert"
                    aria-label="Close"></button>
          </div>
        {% endfor %}
      {% endif %}

      {% element h2 %}Coming soon!{% endelement %}

      <p>Alphabet Learning is a brand new platform setting 
         education resources. As of October 2024, the site is currently in active development 
        and will be launched soon.</p>

      <hr>

      {% block content %}
      {% endblock content %}
    </div>
  </div>
{% endblock body %}