summaryrefslogtreecommitdiff
path: root/shrine/templates/layouts/email.html
blob: 26440bd6f7fa73f2637a6ba702cf201df3c7f3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="margin: 0; padding: 0; background-color: #08080f; font-family: 'IBM Plex Sans', 'Segoe UI', Arial, sans-serif; color: #c8c8d8;">
  <table width="100%" cellpadding="0" cellspacing="0" style="background-color: #08080f; padding: 40px 0;">
    <tr>
      <td align="center">
        <table width="560" cellpadding="0" cellspacing="0" style="background-color: #14142a; border: 1px solid #2a2a3e; border-radius: 8px;">
          <tr>
            <td style="background-color: #1c1c38; padding: 24px 32px; border-radius: 8px 8px 0 0; border-bottom: 1px solid #2a2a3e;">
              <span style="font-size: 22px; font-weight: 700; color: #9b6dff; letter-spacing: 1px;">PAGODA</span>
            </td>
          </tr>
          <tr>
            <td style="padding: 32px;">
              {% block content %}{% endblock %}
            </td>
          </tr>
          <tr>
            <td style="padding: 20px 32px; border-top: 1px solid #2a2a3e; text-align: center;">
              <span style="font-size: 12px; color: #707088;">This email was sent by Pagoda. If you did not expect this, you can safely ignore it.</span>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
</html>