coulomb-social/coulomb_social/templates/core/landing.html

20 lines
722 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ site_name }} — co-creation{% endblock %}
{% block content %}
<h1>coulomb.social</h1>
<p class="muted">
Co-creation platform reestablished on the Railiance / NetKingdom stack.
Members sign in through platform identity — not Bubble.
</p>
<p>
<a class="btn" href="{% url 'identity:login' %}">Sign in</a>
{% if registration_enabled %}
<a class="btn secondary" href="{% url 'identity:register' %}">Create account</a>
{% endif %}
</p>
<p class="muted" style="margin-top: 2rem; font-size: 0.85rem;">
Tenant: {{ default_tenant_id }} · OIDC:
{% if oidc_enabled %}enabled{% else %}dev / not configured{% endif %}
</p>
{% endblock %}