多个提示页面增加请求ID

This commit is contained in:
刘祥超
2021-12-02 14:44:56 +08:00
parent b90115ba2e
commit 9184986717
2 changed files with 5 additions and 3 deletions

View File

@@ -11,7 +11,9 @@ const DefaultTrafficLimitNoticePageBody = `<!DOCTYPE html>
<title>Traffic Limit Exceeded Warning/title> <title>Traffic Limit Exceeded Warning/title>
<body> <body>
The site traffic has exceeded the limit. Please contact with the site administrator. <h1>Traffic Limit Exceeded Warning</h1>
<p>The site traffic has exceeded the limit. Please contact with the site administrator.</p>
<address>Request ID: ${requestId}.</address>
</body> </body>
</html>` </html>`

View File

@@ -11,9 +11,9 @@ const DefaultPlanExpireNoticePageBody = `<!DOCTYPE html>
<title>套餐已过期</title> <title>套餐已过期</title>
<body> <body>
<p>套餐已过期,请及时续费。</p> <h1>套餐已过期,请及时续费。</h1>
<p>Your server plan has been expired, please renew the plan.</p> <p>Your server plan has been expired, please renew the plan.</p>
<address>Request ID: ${requestId}.</address>
</body> </body>
</html>` </html>`