mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 10:52:31 +01:00
66 lines
1.4 KiB
HTML
66 lines
1.4 KiB
HTML
<!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" />
|
|
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" />
|
|
<title>{instanceName} Password Changed</title>
|
|
|
|
<style>
|
|
* {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
p {
|
|
color: white;
|
|
}
|
|
.ExternalClass {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="background-color: #202225;">
|
|
<img
|
|
src="https://raw.githubusercontent.com/spacebarchat/spacebarchat/master/branding/svg/Spacebar__Logo-Blue.svg"
|
|
alt="Branding"
|
|
style="
|
|
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;
|
|
"
|
|
>
|
|
<p
|
|
style="
|
|
font-weight: 600;
|
|
font-size: 20px;
|
|
letter-spacing: 0.27px;
|
|
line-height: 24px;
|
|
"
|
|
>
|
|
Hey {userUsername},
|
|
</p>
|
|
<p>Your {instanceName} password has been changed.</p>
|
|
<p>
|
|
If this wasn't done by you, please immediately reset the
|
|
password to your {instanceName} account.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|