Initial project
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Title</title>
|
||||
<style>
|
||||
<#include "StyleSheet.ftl" />
|
||||
</style>
|
||||
<style>
|
||||
.btn {
|
||||
color: #FFF !important;
|
||||
width: 7rem;
|
||||
margin: 32px auto 48px auto;
|
||||
border: none;
|
||||
display: block;
|
||||
padding: 8px 24px;
|
||||
font-size: 15px;
|
||||
text-align: center;
|
||||
background: #53BD93;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background: #5AC79B;
|
||||
}
|
||||
|
||||
.tips {
|
||||
margin: 12px 0 6px 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="root">
|
||||
<div class="mail">
|
||||
<#if user.data.hasWrapper>
|
||||
<img
|
||||
class="wrapper ir-${user.data.wrapperType?lower_case}"
|
||||
src="https://res.imyeyu.net/user/wrapper/${user.id}.png"
|
||||
/>
|
||||
<#else>
|
||||
<img class="wrapper ir-pixelated" src="https://res.imyeyu.net/user/wrapper/default.png" />
|
||||
</#if>
|
||||
<h4 class="title">
|
||||
<span class="pink bold">${user.name} </span>
|
||||
<span>您好,您正在验证</span>
|
||||
<span class="pink bold"> 夜雨博客 </span>
|
||||
<span>的邮箱绑定,请在 10 分钟内点击下面的按钮完成校验,让我确定这是你的电子邮箱,不要泄露此邮件内容。</span>
|
||||
</h4>
|
||||
<a class="btn" href="${url}" multilingualField="_blank">继续完成验证</a>
|
||||
<aside class="tips center gray">如果这不是你本人操作,请无视此邮件</aside>
|
||||
<#include "Footer.ftl" />
|
||||
</div>
|
||||
<div class="line1"></div>
|
||||
<div class="line2"></div>
|
||||
<div class="line3"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user