madipo2611 6f5298d420 v0.0.3
2025-05-03 02:37:08 +03:00

115 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Сброс пароля</title>
<style type="text/css">
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333333;
margin: 0;
padding: 0;
background-color: #f5f5f5;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 600px;
margin: 20px auto;
padding: 0 15px;
}
.card {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
overflow: hidden;
}
.header {
padding: 25px 30px;
background-color: #FFCC00;
text-align: center;
}
.content {
padding: 30px;
}
.footer {
padding: 20px;
text-align: center;
background-color: #f9f9f9;
font-size: 13px;
color: #777777;
}
.button {
display: inline-block;
padding: 14px 28px;
background-color: #FF3333;
color: #ffffff !important;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
margin: 25px 0;
text-align: center;
}
.text-center {
text-align: center;
}
.urgent {
color: #FF3333;
font-weight: bold;
}
.link {
word-break: break-all;
font-size: 13px;
color: #666666;
background-color: #f0f0f0;
padding: 10px;
border-radius: 4px;
display: inline-block;
margin: 10px 0;
}
.divider {
height: 1px;
background-color: #eeeeee;
margin: 25px 0;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="header">
</div>
<div class="content">
<h2 class="text-center">Сброс пароля</h2>
<p>Здравствуйте!</p>
<p>Мы получили запрос на сброс пароля для вашей учетной записи. Чтобы установить новый пароль, нажмите на кнопку ниже:</p>
<p class="text-center">
<a href="{{.AppURL}}/reset-password?token={{.Token}}" class="button">Сбросить пароль</a>
</p>
<p class="urgent text-center">Ссылка действительна <u>только 24 часа</u>.</p>
<div class="divider"></div>
<p>Если вы не можете нажать на кнопку, скопируйте и вставьте следующую ссылку в адресную строку браузера:</p>
<p class="link">{{.AppURL}}/reset-password?token={{.Token}}</p>
<p><strong>Важно:</strong> Если вы не запрашивали сброс пароля, пожалуйста, проигнорируйте это письмо.</p>
</div>
<div class="footer">
<p>С уважением,<br>Команда <strong>Tailly</strong></p>
<p>Это письмо отправлено автоматически. Пожалуйста, не отвечайте на него.</p>
<p>&copy; {{.Year}} Tailly. Все права защищены.</p>
<p>
<a href="{{.AppURL}}/privacy" style="color: #777777; text-decoration: none;">Политика конфиденциальности</a> |
<a href="{{.AppURL}}/terms" style="color: #777777; text-decoration: none;">Условия использования</a>
</p>
</div>
</div>
</div>
</body>
</html>