{% extends "email/base.html" %} {% block title %}Welcome to Praxicraft{% endblock %} {% block hero %} {% with subtitle=hero_subtitle|default:track_name|default:"Your account is ready" %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Welcome to Praxicraft" hero_subtitle=subtitle hero_icon="rocket.png" hero_accent_icon="confetti.png" %} {% endwith %} {% endblock %} {% block content %}
Hi {{ first_name }},
{% if track_name %} You are on the {{ track_name }} track. Solve real engineering tasks at your own pace. XP tracks what you can do, not how long you spent. {% else %} Your Praxicraft account is ready. Solve real engineering tasks at your own pace. XP tracks what you can do, not how long you spent. {% endif %}
{% if dashboard_url %} {% include "email/partials/_cta.html" with cta_url=dashboard_url cta_label="Start Your First Task" %} {% endif %} {% endblock %}