mirror of https://github.com/buster-so/buster.git
154 lines
4.7 KiB
HTML
154 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Reset your password - Buster</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
.header {
|
|
background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
|
|
padding: 40px 40px 20px;
|
|
text-align: center;
|
|
border-bottom: 1px solid #e9ecef;
|
|
}
|
|
.logo {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #1a1a1a;
|
|
margin-bottom: 10px;
|
|
}
|
|
.subtitle {
|
|
color: #6c757d;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
}
|
|
.content {
|
|
padding: 40px;
|
|
}
|
|
.greeting {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
margin: 0 0 20px;
|
|
}
|
|
.message {
|
|
font-size: 16px;
|
|
color: #495057;
|
|
margin: 0 0 30px;
|
|
line-height: 1.6;
|
|
}
|
|
.cta-button {
|
|
display: inline-block;
|
|
background: #dc3545;
|
|
color: #ffffff !important;
|
|
text-decoration: none;
|
|
padding: 14px 30px;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
margin: 20px 0;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
.cta-button:hover {
|
|
background: #c82333;
|
|
}
|
|
.footer {
|
|
background: #f8f9fa;
|
|
padding: 30px 40px;
|
|
text-align: center;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
.footer-text {
|
|
color: #6c757d;
|
|
font-size: 14px;
|
|
margin: 0 0 10px;
|
|
}
|
|
.footer-link {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
.security-note {
|
|
background: #fff3cd;
|
|
border: 1px solid #ffeaa7;
|
|
border-radius: 6px;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
font-size: 14px;
|
|
color: #856404;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.container {
|
|
border-radius: 0;
|
|
margin: 0 -20px;
|
|
}
|
|
.header,
|
|
.content,
|
|
.footer {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="logo">Buster</div>
|
|
<p class="subtitle">Password reset request</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1 class="greeting">Reset your password</h1>
|
|
|
|
<p class="message">
|
|
We received a request to reset the password for your Buster account. If you made this request, click the button below to create a new password.
|
|
</p>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ .ConfirmationURL }}" class="cta-button">Reset Password</a>
|
|
</div>
|
|
|
|
<div class="security-note">
|
|
<strong>Important:</strong> This password reset link will expire in 1 hour for security reasons. If you didn't request a password reset, please ignore this email and your password will remain unchanged.
|
|
</div>
|
|
|
|
<p class="message">
|
|
If the button doesn't work, you can copy and paste this link into your browser:<br>
|
|
<a href="{{ .ConfirmationURL }}" style="color: #007bff; word-break: break-all;">{{ .ConfirmationURL }}</a>
|
|
</p>
|
|
|
|
<p class="message">
|
|
If you continue to have problems, please contact our support team.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p class="footer-text">
|
|
This email was sent by Buster. If you have any questions, please contact our support team.
|
|
</p>
|
|
<p class="footer-text">
|
|
<a href="#" class="footer-link">Privacy Policy</a> •
|
|
<a href="#" class="footer-link">Terms of Service</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|