2023-01-20 15:18:37 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-01-20 16:43:06 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" />
|
2023-01-20 15:18:37 +01:00
|
|
|
<title>Password Reset Request for {instanceName}</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
2023-01-20 16:43:06 +01:00
|
|
|
p {
|
2023-01-20 15:18:37 +01:00
|
|
|
color: white;
|
|
|
|
}
|
2023-01-20 16:43:06 +01:00
|
|
|
.ExternalClass {
|
|
|
|
width: 100%;
|
2023-01-20 15:18:37 +01:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-20 16:43:06 +01:00
|
|
|
<div style="background-color: #202225;">
|
|
|
|
<img
|
2023-03-31 06:52:33 +02:00
|
|
|
src="https://raw.githubusercontent.com/spacebarchat/spacebarchat/master/branding/svg/Spacebar__Logo-Blue.svg"
|
2023-01-20 16:43:06 +01:00
|
|
|
alt="Branding"
|
2023-01-20 15:18:37 +01:00
|
|
|
style="
|
2023-01-20 16:43:06 +01:00
|
|
|
width: 100%;
|
|
|
|
max-width: 200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
padding: 20px;
|
|
|
|
"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
style="
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 40px 50px;
|
|
|
|
background-color: #32353b;
|
|
|
|
border-radius: 5px;
|
2023-01-20 15:18:37 +01:00
|
|
|
"
|
|
|
|
>
|
2023-01-20 16:43:06 +01:00
|
|
|
<p
|
2023-01-20 15:18:37 +01:00
|
|
|
style="
|
2023-01-20 16:43:06 +01:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 20px;
|
|
|
|
letter-spacing: 0.27px;
|
|
|
|
line-height: 24px;
|
2023-01-20 15:18:37 +01:00
|
|
|
"
|
|
|
|
>
|
2023-01-20 16:43:06 +01:00
|
|
|
Hey {userUsername},
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Your {instanceName} password can be reset by clicking the
|
|
|
|
button below. If you did not request a new password, please
|
|
|
|
ignore this email.
|
|
|
|
</p>
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
style="
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
"
|
2023-01-20 15:18:37 +01:00
|
|
|
>
|
2023-01-20 16:43:06 +01:00
|
|
|
<a
|
|
|
|
href="{passwordResetUrl}"
|
|
|
|
target="_blank"
|
|
|
|
style="
|
|
|
|
font-size: 15px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 15px 19px;
|
|
|
|
background-color: #ff5f00;
|
|
|
|
border-radius: 5px;
|
|
|
|
"
|
|
|
|
>Reset Password</a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div style="text-align: center">
|
|
|
|
<p>
|
|
|
|
Alternatively, you can directly paste this link into
|
|
|
|
your browser:
|
|
|
|
</p>
|
2023-02-24 07:54:10 +01:00
|
|
|
<a href="{passwordResetUrl}" target="_blank" style="word-wrap: break-word;"
|
2023-01-20 16:43:06 +01:00
|
|
|
>{passwordResetUrl}</a
|
|
|
|
>
|
|
|
|
</div>
|
2023-01-20 15:18:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|