35 lines
1.9 KiB
Django/Jinja
35 lines
1.9 KiB
Django/Jinja
{% raw %}{% load i18n %}
|
|
{% load humanize %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% blocktrans with domain=branding_title %}Verify your email - {{ domain }}{% endblocktrans %}</title>
|
|
<style>
|
|
body { margin: 0; padding: 0; background-color: #f4f4f7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
|
|
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
.card { background-color: #ffffff; border-radius: 8px; padding: 40px; margin-top: 20px; }
|
|
.btn { display: inline-block; background-color: #4050b5; color: #ffffff; text-decoration: none; padding: 12px 32px; border-radius: 6px; font-weight: 600; }
|
|
.footer { text-align: center; color: #888; font-size: 13px; margin-top: 24px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="card">
|
|
<h1>{% blocktrans with domain=branding_title %}Welcome to {{ domain }}{% endblocktrans %}</h1>
|
|
<p>{% blocktrans with username=user.username %}Hi {{ username }},{% endblocktrans %}</p>
|
|
<p>{% blocktrans %}Please click the button below to verify your email address and activate your account.{% endblocktrans %}</p>
|
|
<p style="text-align: center; margin: 32px 0;">
|
|
<a href="{{ url }}" class="btn">{% trans "Verify Email" %}</a>
|
|
</p>
|
|
<p>{% blocktrans with expiry=expires|naturaltime %}This link will expire {{ expiry }}.{% endblocktrans %}</p>
|
|
<p style="color: #888; font-size: 13px;">{% blocktrans %}If you did not create an account, you can safely ignore this email.{% endblocktrans %}</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>{{ branding_title }}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>{% endraw %}
|