Django scaffold aligned with the business delivery lane: tenant-keyed Member model without passwords, identity app as sole OIDC/session boundary, dev-claims login, authenticated /app/ shell, ADR-0001, and tests. T01/T02/T05/T06 done; OIDC registration, real user-engine HTTP, flex-auth, and packaging remain open.
16 lines
585 B
HTML
16 lines
585 B
HTML
{% 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>
|
|
</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 %}
|