22 lines
577 B
HTML
22 lines
577 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title>Account activation</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<link rel="shortcut icon" th:href="@{|${baseUrl}/favicon.ico|}"/>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Аккаунт в системе NG-Tracker был создан. <br />
|
|
Данные для входа: <br />
|
|
Логин - <span th:text="${email}"></span> <br />
|
|
Пароль - <span th:text="${password}"></span>
|
|
</p>
|
|
<p>
|
|
Regards,
|
|
<br/>
|
|
<em>Balance Team.</em>
|
|
</p>
|
|
</body>
|
|
</html>
|