{% load account %}
{% user_display user as user_display %}
{% load i18n %}
{% autoescape off %}
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}

Welcome to, {{ site_name }}!
{% endblocktrans %}

{% trans 'To confirm your Account, please follow this link' %}: {{ activate_url }}{% if next %}?next={{next}}{% endif %}
or if you are accessing from the mobile application, copy the following code to complete the process.

{% trans "Email Verification Key" %}: {{ key }}

{% if otp %}
{% trans "Use your OTP code to confirm registration through your mobile phone verification" %}
OTP: {{ otp }}
{% endif %}


{% endautoescape %}
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}

Thank you from our Team in {{ site_name }}!

{{ site_domain }}
{% endblocktrans %}
