worker/internal/answerwc/template/reminder.tmpl
skeris b6d9bc6697
All checks were successful
Deploy / ValidateConfig (push) Successful in 27s
Deploy / MigrateDatabase (push) Successful in 51s
Deploy / CreateImage (push) Successful in 2m44s
Deploy / DeployService (push) Successful in 26s
fix: footer link working
2025-08-13 18:35:36 +00:00

192 lines
3.5 KiB
Cheetah
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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
/* Сброс стилей */
body,
h1,
h2,
h3,
p,
div,
img,
button,
table,
th,
td {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
}
body {
background-color: #f2f2f7;
font-family: Arial, sans-serif;
}
@media (max-width: 400px) {
h1 {
font-size: 25px !important;
}
h4 {
font-size: 20px !important;
}
.balance {
font-size: 15px !important;
}
.image {
max-width: 223px;
height: 208px;
}
}
</style>
</head>
<body style="background-color: #f2f2f7; font-family: Arial, sans-serif">
<table style="width: 100%; padding: 16px">
<tr>
<td>
<img class="image" style="width: 103px; height: 40px" src="https://storage.yandexcloud.net/squizimages/logo-email-squiz.png" />
</td>
<td>
<p style="text-align: end; color: #9a9aaf; font-size: 14px">Квиз для вашего бизнеса</p>
</td>
</tr>
<tr>
<td colspan="2" style="height: 100%">
<h1
style="
font-size: 30px;
font-weight: 600;
margin-bottom: 13px;
width: 100%;
margin: 0;
margin-bottom: 16px;
margin-top: 50px;
"
>
Поступила новая заявка с квиза “{{ .QuizConfig.Theme }}”!
</h1>
</td>
</tr>
<tr>
<td colspan="2" style="height: 100%">
<p class="balance" style="color: #4d4d4d; font-size: 20px; margin-bottom: 30px">
Но у вас закончились средства на балансе :(
</p>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center; padding: 0">
<img class="image" style="width: 100%; max-width: 440px; height: 280px; margin-bottom: 40px" src="https://storage.yandexcloud.net/squizimages/img_wallet.png" />
</td>
</tr>
<tr>
<td colspan="2" style="height: 100%">
<h1
style="font-size: 25px; font-weight: 600; margin-bottom: 15px; width: 100%; margin: 0; margin-bottom: 13px"
>
Аккаунт
</h1>
</td>
</tr>
<tr>
<td colspan="2" style="padding: 0">
<table
style="
background-color: #fff;
border-radius: 8px;
text-align: left;
max-width: 480px;
width: 100%;
padding: 16px;
margin-bottom: 40px;
"
>
<tr>
<th
style="
text-align: start;
color: #4d4d4d;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
"
>
Email
</th>
<td style="word-break: break-word">
<p
style="
text-align: start;
color: #7e2aea;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 15px;
"
>
{{ .QuizConfig.Reply }}
</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" style="height: 100%">
<p class="balance" style="color: #9a9aaf; font-size: 20px; margin-bottom: 30px; text-align: center">
Пополните баланс и посмотрите заявку в личном кабинете:
</p>
</td>
</tr>
<tr>
<td colspan="2" style="height: 100%; text-align: center">
<a
style="
max-width: 312px;
color: #f2f3f7;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
border-radius: 8px;
border: 1px solid #7e2aea;
background: #7e2aea;
padding: 10px 43px;
"
>
Посмотреть в личном кабинете
</a>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center; padding: 30px 0 0 0">
<hr style="border-top: 2px solid rgba(126, 42, 234, 0.2); margin: 0 0 10px" />
<a href="https://quiz.pena.digital" style="color: #7e2aea; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal">
quiz.pena.digital
</a>
</td>
</tr>
</table>
</body>
</html>