mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-10-15 14:33:44 +08:00
整合包
This commit is contained in:
81
YiAiQuickDeploy/templates/pages/registerError.hbs
Normal file
81
YiAiQuickDeploy/templates/pages/registerError.hbs
Normal file
@@ -0,0 +1,81 @@
|
||||
<!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: 200px;
|
||||
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.5;
|
||||
}
|
||||
|
||||
.detail a {
|
||||
color: #32e24e;
|
||||
}
|
||||
|
||||
.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.registerFailEmailTitle}}</b>
|
||||
<p class="detail">很抱歉你的账户验证失败,请参照以下错误提示信息,进行对应的操作:
|
||||
<a >{{data.message}}</a>
|
||||
</p>
|
||||
<p class="tips">System mail,please do not reply</p>
|
||||
<span class="footer">FROM: {{data.registerFailEmailTeamName}}</span>
|
||||
</span>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
82
YiAiQuickDeploy/templates/pages/registerSuccess.hbs
Normal file
82
YiAiQuickDeploy/templates/pages/registerSuccess.hbs
Normal file
@@ -0,0 +1,82 @@
|
||||
<!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>
|
Reference in New Issue
Block a user