{% extends "email/base.html" %}
{% load i18n %}
{% load humanize %}
{% block content %}
{% blocktrans with username=user.username %}
Hi {{ username }},
{% endblocktrans %}
|
{% blocktrans %}
You recently requested to change your password for you authentik account. Use the button below to set a new password.
{% endblocktrans %}
|
|
{% blocktrans with expires=expires|naturaltime %}
If you did not request a password change, please ignore this Email. The link above is valid for {{ expires }}.
{% endblocktrans %}
|
|
{% endblock %}