@@ -110,6 +110,7 @@ app:
|
||||
verification:
|
||||
standart-subject: NO COPY - Подтверждение email адреса
|
||||
standart-address-from: vlad.popovtsev@gmail.com
|
||||
drop-password-subject: NO COPY - сброс пароля
|
||||
user: Пользователь
|
||||
|
||||
tarif:
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Восстановление пароля</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
|
||||
}
|
||||
.header {
|
||||
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
|
||||
color: white;
|
||||
padding: 40px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.logo {
|
||||
font-size: 32px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 10px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.content {
|
||||
padding: 40px 30px;
|
||||
}
|
||||
.greeting {
|
||||
font-size: 18px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.username {
|
||||
color: #ee5a52;
|
||||
font-weight: bold;
|
||||
}
|
||||
.code-container {
|
||||
background: #f8f9fa;
|
||||
border: 2px dashed #ff6b6b;
|
||||
border-radius: 10px;
|
||||
padding: 25px;
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
.verification-code {
|
||||
font-size: 42px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 8px;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
}
|
||||
.info-text {
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.warning {
|
||||
background: #fff3cd;
|
||||
border: 1px solid #ffeaa7;
|
||||
color: #856404;
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
margin: 25px 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.action-button {
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
|
||||
color: white;
|
||||
padding: 14px 32px;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.action-button:hover {
|
||||
background: linear-gradient(135deg, #ee5a52 0%, #d64541 100%);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
|
||||
}
|
||||
.steps {
|
||||
margin: 30px 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.steps li {
|
||||
margin-bottom: 10px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 25px;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
border-top: 1px solid #eee;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
.highlight {
|
||||
color: #ee5a52;
|
||||
font-weight: 600;
|
||||
}
|
||||
.urgent {
|
||||
color: #d63031;
|
||||
font-weight: 700;
|
||||
}
|
||||
.link-fallback {
|
||||
margin-top: 15px;
|
||||
font-size: 13px;
|
||||
color: #666;
|
||||
}
|
||||
.timer {
|
||||
background: #ffebee;
|
||||
border-left: 4px solid #ff6b6b;
|
||||
padding: 12px 15px;
|
||||
margin: 20px 0;
|
||||
border-radius: 0 8px 8px 0;
|
||||
}
|
||||
.timer-text {
|
||||
color: #d32f2f;
|
||||
font-weight: 600;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="logo">NO COPY</div>
|
||||
<h1>Восстановление пароля</h1>
|
||||
<p>Безопасный доступ к вашему аккаунту</p>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<p class="greeting">
|
||||
Здравствуйте, <span class="username">{{username}}</span>!
|
||||
</p>
|
||||
|
||||
<p>Мы получили запрос на восстановление пароля для вашего аккаунта NO COPY.</p>
|
||||
<p>Для продолжения восстановления доступа, пожалуйста, используйте следующий код подтверждения:</p>
|
||||
|
||||
<div class="code-container">
|
||||
<p class="verification-code">{{code}}</p>
|
||||
<p class="info-text">Код для восстановления пароля</p>
|
||||
</div>
|
||||
|
||||
<div class="timer">
|
||||
<p class="timer-text">Код действителен в течение 15 минут</p>
|
||||
</div>
|
||||
|
||||
<h3>Как использовать этот код:</h3>
|
||||
<ol class="steps">
|
||||
<li>Вернитесь на страницу восстановления пароля</li>
|
||||
<li>Введите полученный код в поле подтверждения</li>
|
||||
<li>Создайте новый надежный пароль</li>
|
||||
<li>Войдите в аккаунт с новым паролем</li>
|
||||
</ol>
|
||||
|
||||
<div style="text-align: center;">
|
||||
<a href="{{resetLink}}" class="action-button">Перейти к восстановлению пароля</a>
|
||||
</div>
|
||||
|
||||
<p class="link-fallback">
|
||||
Если кнопка не работает, скопируйте и вставьте эту ссылку в браузер:<br>
|
||||
<span style="color: #3498db; word-break: break-all;">{{resetLink}}</span>
|
||||
</p>
|
||||
|
||||
<div class="warning">
|
||||
<strong>Важная информация:</strong><br>
|
||||
1. Если вы не запрашивали восстановление пароля, проигнорируйте это письмо.<br>
|
||||
2. Никому не сообщайте этот код, включая сотрудников поддержки.<br>
|
||||
3. После успешного восстановления старый пароль будет недействителен.
|
||||
</div>
|
||||
|
||||
<p style="font-size: 13px; color: #7f8c8d;">
|
||||
<strong>Совет по безопасности:</strong> Используйте пароль длиной не менее 8 символов,
|
||||
содержащий буквы (заглавные и строчные), цифры и специальные символы.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<p>© 2024 NO COPY. Все права защищены.</p>
|
||||
<p>Это письмо отправлено автоматически, пожалуйста, не отвечайте на него.</p>
|
||||
<p>Если у вас возникли вопросы или вы не запрашивали восстановление пароля,
|
||||
<a href="mailto:support@nocopy.com" style="color: #ee5a52;">свяжитесь со службой поддержки</a>.</p>
|
||||
<p style="font-size: 11px; margin-top: 10px;">
|
||||
IP запроса: {{ipAddress}} • Время: {{timestamp}} • Устройство: {{deviceInfo}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user