You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.1 KiB
Django/Jinja

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
.header { color: #1a73e8; font-size: 24px; margin-bottom: 20px; }
.content { line-height: 1.8; color: #333; }
.highlight { color: #1a73e8; font-weight: bold; }
.footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; color: #999; font-size: 12px; }
</style>
</head>
<body>
<div class="container">
<div class="header">欢迎加入 {{ tenant_name }}</div>
<div class="content">
<p><strong>{{ username }}</strong>,您好!</p>
<p>您的租户已成功创建,试用期至 <span class="highlight">{{ trial_end }}</span>。</p>
<p>请登录后台开始使用。</p>
</div>
<div class="footer">
<p>此邮件由系统自动发送,请勿回复。</p>
</div>
</div>
</body>
</html>