64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Passwort zurücksetzen</title>
|
|
<style>
|
|
body {
|
|
}
|
|
.message-block {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
margin-top: 20px;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background-color: rgb(255, 199, 44);
|
|
width: 100%;
|
|
height: 15%;
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.wrapper {
|
|
display: inline-block;
|
|
}
|
|
.quote {
|
|
font-style: italic;
|
|
font-size: x-small;
|
|
color: slategray;
|
|
}
|
|
img {
|
|
margin: 1rem;
|
|
}
|
|
h1 {
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="header" class="header">
|
|
<div class="wrapper">
|
|
<div id="title" class="title">
|
|
<img src="assets/icon.png" />
|
|
<h1>Beekeeper</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="message-block" class="message-block">
|
|
<p>Hallo {$username},</p>
|
|
<br />
|
|
<p>Dein Passwort wurde zurückgesetzt.</p>
|
|
<p>Bitte klicke auf <a href="{$passwordResetLink}">diesen Link</a> um ein neues Passwort zu vergeben.</p>
|
|
<br />
|
|
<p>Wenn du dein Passwort nicht zurückgesetzt hast, kannst du diese Nachricht ignorieren!</p>
|
|
<br />
|
|
<p>Mit fleißigen Grüßen,</p>
|
|
<p>Der Beekeeper</p>
|
|
</div>
|
|
</body>
|
|
</html>
|