24 lines
901 B
HTML
24 lines
901 B
HTML
{% extends "datacenterlight/emails/base_email_datacenterlight.html" %}
|
|
{% load static from staticfiles %}
|
|
{% load i18n %}
|
|
{% block email_head %}
|
|
{{dcl_text}} {% trans 'Account Activation' %}
|
|
{% endblock %}
|
|
{% block email_body %}
|
|
{% blocktrans %}
|
|
You can activate your Data Center Light account by <a href="{{base_url}}{{activation_link}}">clicking here</a>.<br/>
|
|
You can also copy and paste the following link into the address bar of your browser<br/>
|
|
to activate your Data Center Light account.<br/>
|
|
{{base_url}}{{activation_link}}
|
|
{% endblocktrans %}
|
|
{% if account_details %}
|
|
{% url 'hosting:reset_password' as reset_password_url %}
|
|
<br/><br/>
|
|
{% blocktrans %}Your account details are as follows:<br/><br/>
|
|
Username : Your email address<br/>
|
|
Password : {{account_details}}<br/><br/>
|
|
You can reset your password here:
|
|
{{base_url}}{{reset_password_url}}
|
|
{% endblocktrans %}
|
|
{% endif %}
|
|
{% endblock %}
|