mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-10-15 14:33:44 +08:00
83 lines
1.8 KiB
Handlebars
83 lines
1.8 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>邮箱验证成功</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 300px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
|
|
}
|
|
|
|
.content {
|
|
width: 400px;
|
|
min-height: 320px;
|
|
padding: 15px;
|
|
display: flex;
|
|
border-radius: 15px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
background-color: transparent;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
|
|
0 6px 6px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.content b {
|
|
font-size: 20px;
|
|
color: #5ead22;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.detail {
|
|
margin-bottom: 10px;
|
|
line-height: 1.6;
|
|
color: #3c3434;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.tips {
|
|
font-size: 12px;
|
|
color: #797676;
|
|
}
|
|
|
|
.footer {
|
|
padding-right: 15px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<span class="content">
|
|
<b>{{data.registerSuccessEmailTitle}}</b>
|
|
<p class="detail">
|
|
亲爱的{{data.username}},欢迎加入{{data.registerSuccessEmailTeamName}},您是尊贵的{{data.id}}号用户,你的账号{{data.username}} |
|
|
{{data.email}}已经激活成功{{data.registerSuccessEmaileAppend}}
|
|
</p>
|
|
<p class="tips">System mail,please do not reply</p>
|
|
<span class="footer">FROM: {{data.registerSuccessEmailTeamName}}</span>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|