open-webui/backend/beyond_the_loop/templates/email/base.html
2025-02-19 12:22:10 +01:00

79 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Bchat{% endblock %}</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 100%;
max-width: 600px;
margin: 20px auto;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid #dddddd;
}
.header h1 {
margin: 0;
color: #333333;
}
.content {
padding: 20px 0;
}
.content p {
color: #666666;
line-height: 1.5;
}
.button {
display: block;
width: 200px;
margin: 20px auto;
padding: 10px 0;
text-align: center;
background-color: #007FFF;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
}
.footer {
text-align: center;
padding-top: 20px;
border-top: 1px solid #dddddd;
color: #999999;
font-size: 12px;
}
.footer a {
color: #007BFF;
text-decoration: none;
}
{% block additional_styles %}{% endblock %}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>{% block header %}{% endblock %}</h1>
</div>
<div class="content">
{% block content %}{% endblock %}
</div>
<div class="footer">
<p>Diese E-Mail wurde automatisch generiert. Bitte antworte nicht direkt darauf. Bei Fragen wenden dich an unseren <a href="mailto:support@beyondtheloop.ai">Support</a>.</p>
</div>
</div>
</body>
</html>