39 lines
1010 B
Handlebars
39 lines
1010 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>欢迎注册</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
.container {
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
color: #333333;
|
|
}
|
|
p {
|
|
color: #666666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>欢迎注册,{{ name }}!</h1>
|
|
<p>感谢您注册我们的服务。我们很高兴为您提供优质的服务。</p>
|
|
<p>如果您有任何问题或需要帮助,欢迎随时联系我们。</p>
|
|
<p>祝您使用愉快!</p>
|
|
</div>
|
|
</body>
|
|
</html> |