Phase 3 & Phase 4 - Completed

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-07 00:57:26 +00:00
parent 4b6a03a898
commit 909ed1cb17
25 changed files with 5549 additions and 215 deletions

View File

@@ -0,0 +1,30 @@
{% extends "emails/base.html" %}
{% block title %}Welcome to IGNY8{% endblock %}
{% block content %}
<h1>Welcome to IGNY8!</h1>
<p>Hi {{ user_name }},</p>
<p>We're excited to have you on board! Your account <strong>{{ account_name }}</strong> is ready to go.</p>
<div class="success-box">
<strong>What's next?</strong>
<ul style="margin: 10px 0 0 0; padding-left: 20px;">
<li>Explore your dashboard</li>
<li>Set up your first project</li>
<li>Connect your integrations</li>
</ul>
</div>
<p style="text-align: center;">
<a href="{{ login_url }}" class="button">Go to Dashboard</a>
</p>
<p>If you have any questions, our support team is here to help. Just reply to this email or visit our help center.</p>
<p>
Best regards,<br>
The IGNY8 Team
</p>
{% endblock %}