mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

This involves changing how registration templates are referenced and how the activation email is sent on user's email address change. Signed-off-by: Amber Elliot <amber.n.elliot@intel.com>
11 lines
227 B
HTML
11 lines
227 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% trans "Your account has been successfully activated." %}
|
|
<br/>
|
|
{% trans "You can now " %} <a href="{% url 'login' %}">{% trans "log in" %}</a>.
|
|
|
|
{% endblock %}
|