{% extends "base.html" %} {% block title %}Welcome to {{ app_name }}!{% endblock %} {% block content %}

Welcome to {{ app_name }}!

Hi {{ user_name | default("there") }},

Thank you for joining {{ app_name }}! We're excited to have you on board. {% if is_verified %} Your account is now fully set up and ready to use. {% else %} Your account has been created successfully. {% endif %}

{% if app_url %}

Get Started

{% endif %}

What's Next?

{% if getting_started_steps %}
    {% for step in getting_started_steps %}
  1. {{ step }}
  2. {% endfor %}
{% else %} {% endif %} {% if features %}

Key Features

{% endif %}

Need help getting started?
{% if support_email %} Our team is here to help! Reach out to us at {{ support_email }} {% elif docs_url %} Check out our documentation for guides and tutorials. {% else %} Check out our documentation for guides and tutorials. {% endif %}

We're thrilled to have you with us!
The {{ app_name }} Team

{% endblock %}