2023-03-10 17:59:16 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
{% include 'head.html' %}
|
|
|
|
|
{% include 'header.html' %}
|
|
|
|
|
{% include 'logo.html' %}
|
|
|
|
|
{% block content %}
|
2023-04-06 16:46:49 -04:00
|
|
|
</br>
|
|
|
|
|
</br>
|
|
|
|
|
<h2>Academy: {{ session.raw_school }}</h2>
|
|
|
|
|
<p> </p>
|
|
|
|
|
<h3>Subdomain:
|
|
|
|
|
<a class="subdom-link" href={{ session.subdomain }}>{{ session.subdomain }}
|
|
|
|
|
</a>
|
|
|
|
|
</h3>
|
2023-03-10 17:59:16 -05:00
|
|
|
|
|
|
|
|
{% endblock %}
|
2023-04-06 16:46:49 -04:00
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.subdom-link { color: #089FB7; }
|
|
|
|
|
.subdom-link:hover { color: #F05323; }
|
|
|
|
|
</style>
|