{% extends "base_no_auth.html" %} {% load i18n %} {% block login_content %}
{% if profile and token_verified %} {% if sms_sent %}

{% trans "Registration complete!" %}


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

{% blocktrans with phone=profile.phone %}Your password has been sent to your phone number {{ phone }} as text message.{% endblocktrans %} {% trans "You may go ahead and log in now." %}

{% else %}

{% trans "Registration problem :(" %}


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

{% blocktrans with phone=profile.phone %}There was an error while sending a text message with your new password to your phone number {{ phone }}. Please contact us at {{ support_email }}.{% endblocktrans %} {% endif %} {% else %}

{% trans "Registration problem :(" %}


{% trans "The activation link is invalid. Your account may already be activated."%}

{% endif %}
{% endblock %} {% block nav_accounts_register %}{% endblock %}