21 lines
874 B
HTML
21 lines
874 B
HTML
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
line-height: 1.6;
|
||
|
background-color: #f7f7f7;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<div style="max-width: 600px; margin: 0 auto; padding: 20px; background-color: #ffffff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);">
|
||
|
<div style="text-align: center; margin-bottom: 20px;">
|
||
|
<img src="{{ protocol }}://{{ domain }}{{static('icons/logo.png')}}" alt="{{site_name}}" style="max-width: 150px;">
|
||
|
</div>
|
||
|
<div style="margin-bottom: 20px; text-align: center;">
|
||
|
<h2>{{title}}</h2>
|
||
|
<p>{{_('Dear')}} {{username}},</p>
|
||
|
<p>{{message}}</p>
|
||
|
</div>
|
||
|
<div style="text-align: center;">
|
||
|
<a href="{{ protocol }}://{{ domain }}{{ url_path }}" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 4px;">{{button_text}}</a>
|
||
|
</div>
|
||
|
</div>
|