coulomb-social/coulomb_social/templates/core/landing.html
tegwick 29a9ff735e Complete identity smoke path: id_token claims, registration entry, cutover docs
Prefer verified KeyCape id_token claims when /userinfo returns 401; soft-fail
userinfo. Add CSOC-WP-0003 registration entry (disabled until NetKingdom URL),
AAL step-up hooks, smoke/cutover evidence for tegwick OIDC without MFA.
2026-08-09 22:42:51 +02:00

19 lines
722 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>
{% 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 %}