All checks were successful
Build and Release / release (push) Successful in 1m49s
40 lines
2.0 KiB
HTML
40 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Account Information</title>
|
|
<style>
|
|
body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; color: #333333; }
|
|
.container { max-width: 600px; margin: 40px auto; background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; }
|
|
.header { background-color: #2563EB; padding: 30px; text-align: center; color: #ffffff; }
|
|
.header h1 { margin: 0; font-size: 24px; font-weight: 600; }
|
|
.content { padding: 40px 30px; text-align: left; }
|
|
.content p { font-size: 16px; line-height: 1.6; color: #555555; margin-bottom: 25px; }
|
|
.info-box { background-color: #F0F9FF; border: 1px solid #BAE6FD; padding: 20px; border-radius: 6px; margin-bottom: 25px; }
|
|
.info-item { margin-bottom: 10px; font-size: 16px; }
|
|
.info-label { font-weight: bold; color: #0369A1; min-width: 100px; display: inline-block; }
|
|
.footer { background-color: #f9fafb; padding: 20px; text-align: center; font-size: 13px; color: #9ca3af; border-top: 1px solid #eeeeee; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Account Information</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Hello,</p>
|
|
<p>Your account information has been updated by the administrator. Here are your credentials:</p>
|
|
<div class="info-box">
|
|
<div class="info-item"><span class="info-label">Email:</span> {{EMAIL}}</div>
|
|
<div class="info-item"><span class="info-label">Password:</span> {{PASSWORD}}</div>
|
|
</div>
|
|
<p>Please log in and change your password as soon as possible to ensure your account security.</p>
|
|
</div>
|
|
<div class="footer">
|
|
© 2026 Black Cat Studio. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|