flask_template_codex/app/templates/core/index.html
2026-08-08 02:53:18 +02:00

17 lines
601 B
HTML

{% extends "base.html" %}
{% block title %}Home · Steady{% endblock %}
{% block content %}
<section class="hero" aria-labelledby="welcome-heading">
<p class="eyebrow">One calm step at a time</p>
<h1 id="welcome-heading">Welcome to Steady</h1>
{% if current_user.is_authenticated %}
<p>Your workspace is ready. Task management arrives in Phase 2.</p>
{% else %}
<p>A quiet, ADHD-friendly place to capture and complete what matters.</p>
<a class="button" href="{{ url_for('auth.register') }}">Create your account</a>
{% endif %}
</section>
{% endblock %}