Mailservice
This commit is contained in:
94
api/src/templates/access.hbs
Normal file
94
api/src/templates/access.hbs
Normal file
@@ -0,0 +1,94 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zugriff gewährt</title>
|
||||
<style>
|
||||
/* General styles */
|
||||
body {
|
||||
font-family: 'Roboto', Arial, sans-serif;
|
||||
background-color: #f5f5f5;
|
||||
color: #424242;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
margin: 20px auto;
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
|
||||
overflow: hidden;
|
||||
}
|
||||
.header {
|
||||
background-color: #2196f3; /* Freundliches Blau */
|
||||
color: #ffffff;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.content {
|
||||
padding: 24px 20px;
|
||||
line-height: 1.6;
|
||||
color: #424242;
|
||||
}
|
||||
.content p {
|
||||
margin: 0 0 16px;
|
||||
}
|
||||
.button-container {
|
||||
text-align: center;
|
||||
margin: 24px 0;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
font-size: 16px;
|
||||
color: #ffffff;
|
||||
background-color: #2196f3; /* Gleicher Blauton */
|
||||
text-decoration: none;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
|
||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
.btn:hover {
|
||||
background-color: #1769aa; /* Dunkleres Blau für Hover */
|
||||
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.footer {
|
||||
background-color: #f5f5f5;
|
||||
text-align: center;
|
||||
padding: 16px;
|
||||
font-size: 0.875rem;
|
||||
color: #757575;
|
||||
}
|
||||
.footer a {
|
||||
color: #2196f3;
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>Zu Schließanlage hinzugefügt</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>Hallo {{firstName}},</p>
|
||||
<p>Du wurdest als Verwalter zu folgender Schließanlage hinzugefügt:</p>
|
||||
<div class="button-container">
|
||||
<a href="#" class="btn">{{systemName}}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<p>Falls du Fragen hast, kontaktiere uns bitte <a href="mailto:support@example.com">hier</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user