10 lines
530 B
HTML
10 lines
530 B
HTML
<h3>{{ title }}</h3>
|
|
<p>{{_("Dear")}} {{ first_name }}{% if last_name %} {{ last_name}}{% endif %},</p>
|
|
<p>{{_("A new account has been created for you")}}.</p>
|
|
<p>{{_("Your login id is")}}: <b>{{ user }}</b>
|
|
<p>{{_("Click on the link below to complete your registration and set a new password")}}.</p>
|
|
<p><b><a href="{{ link }}">{{_("Complete Registration")}}</a></b></p>
|
|
<br>
|
|
<p>{{_("You can also copy-paste this link in your browser")}} <a href="{{ link }}">{{ link }}</a></p>
|
|
<p>{{_("Thank you")}},<br>
|
|
{{ user_fullname }}</p>
|