26 lines
665 B
HTML
26 lines
665 B
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns:th="http://www.thymeleaf.org">
|
||
|
<head>
|
||
|
<title>Password reset</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
<link rel="shortcut icon" th:href="@{|${baseUrl}/favicon.ico|}"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>
|
||
|
Dear <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
|
||
|
</p>
|
||
|
<p>
|
||
|
For your account a password reset was requested, please click on the URL below to
|
||
|
</p>
|
||
|
<p>
|
||
|
<a th:href="@{|${baseUrl}/reset?key=${user.resetKey}|}"
|
||
|
th:text="@{|${baseUrl}/reset?key=${user.resetKey}|}">Reset Link</a>
|
||
|
</p>
|
||
|
<p>
|
||
|
Regards,
|
||
|
<br/>
|
||
|
<em>Balance Team.</em>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|