devfund-website/templates/email_layout.html
Anna Sirota 2a4963d71a Breaking changes: account-less checkout
It's now possible to create a DevFund membership without logging in on the website,
and then use a /link-membership/ URL to link it to a Blender ID account.
Emails now also include this URL when notifying about changes or automated payments
on account-less memberships.
2023-10-26 16:07:53 +02:00

46 lines
981 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{{ subject }}{% endblock %}</title>
<style>
html, body {
background-color: white;
color: black;
font-family: 'Roboto', 'Noto Sans', sans-serif;
font-size: 10pt;
}
body {
max-width: 100%;
width: 60ex;
margin-right: auto;
padding: 0.5em 1em;
}
p {
line-height: 150%;
}
p.closing {
margin-top: 2em;
}
section.about {
margin-top: 2em;
color: #888;
}
</style>
</head>
<body>
<p>Dear {{ full_name|default:email }},</p>
{% block body %}{% endblock %}
{% if user and membership_url %}
<p>You can always go to <a href="{{ membership_url }}">{{ membership_url }}</a> to view and update your membership.</p>
{% endif %}
<p class="closing">
--<br>
Kind regards,<br>
Blender Foundation
</p>
</body>
</html>