42 lines
1.4 KiB
Handlebars
42 lines
1.4 KiB
Handlebars
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{{!--<title>Order Summary</title> --}}
|
|
{{> styles}}
|
|
<style>
|
|
pre {
|
|
background-color: #f8f9fa;
|
|
color: #d63384;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
white-space: pre-wrap;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
{{!-- <link rel="stylesheet" href="styles/styles.css" /> --}}
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Dear {{username}},<br/><br/>
|
|
|
|
Your password was change. Please find your new temporary password below:<br/><br/>
|
|
|
|
Temporary Password: <em><b>{{password}}</b></em><br/><br/>
|
|
|
|
For security reasons, we strongly recommend changing your password as soon as possible.<br/><br/>
|
|
|
|
You can update it by logging into your account, clicking your profile at the top right and click password change.<br/><br/>
|
|
|
|
|
|
Or <a href="http://{{server}}:{{port}}/passwordChange"
|
|
style="display:inline-block; padding:10px 20px; text-decoration:none; border-radius:5px;">
|
|
Click Here
|
|
</a> to login and change your password.<br/><br/>
|
|
|
|
Best regards,<br/><br/>
|
|
LST team<br/>
|
|
</p>
|
|
|
|
</body>
|
|
</html> |