mirror of
https://github.com/RaisFast/raisfast.git
synced 2026-09-26 00:02:19 +00:00
14 lines
581 B
HTML
14 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta charset="utf-8"></head>
|
|
<body style="font-family: sans-serif; max-width: 600px; margin: 0 auto; padding: 20px;">
|
|
<h2>Welcome, {{ username }}!</h2>
|
|
<p>Thanks for signing up at {{ site_name }}.</p>
|
|
{% if verify_url %}
|
|
<p>Please verify your email by clicking the link below:</p>
|
|
<p><a href="{{ verify_url }}" style="background: #4f46e5; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;">Verify Email</a></p>
|
|
<p style="color: #666; font-size: 12px;">Or copy: {{ verify_url }}</p>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|