2026-08-09 01:45:05 +02:00
|
|
|
{% 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>
|
2026-08-09 22:42:51 +02:00
|
|
|
{% if registration_enabled %}
|
|
|
|
|
<a class="btn secondary" href="{% url 'identity:register' %}">Create account</a>
|
|
|
|
|
{% endif %}
|
2026-08-09 01:45:05 +02:00
|
|
|
</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 %}
|