<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>域名到期提醒</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #ff4d4d;
}
p {
line-height: 1.6;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>域名已到期</h1>
<p>尊敬的使用者,您的域名已於 <strong>2023年12月31日</strong> 到期。</p>
<p id="days-overdue"></p>
<p>為了繼續使用我們的服務,請儘快進行續費。</p>
<a href="自定義連結跳轉連結" class="button">立即續費</a>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const expirationDate = new Date('2023-12-31'); // 設定域名到期日期
const today = new Date();
const daysOverdue = Math.ceil((today - expirationDate) / (1000 * 60 * 60 * 24));
if (daysOverdue > 0) {
document.getElementById('days-overdue').textContent = `您的域名已過期 ${daysOverdue} 天。`;
} else {
document.getElementById('days-overdue').textContent = '您的域名尚未到期。';
}
});
</script>
</body>
</html>
效果演示