diff --git a/back/api/templates/email_password_reset.html b/back/api/templates/email_password_reset.html
index ff2ea1c6..37f404f0 100644
--- a/back/api/templates/email_password_reset.html
+++ b/back/api/templates/email_password_reset.html
@@ -1,11 +1,11 @@
{% extends "email_base_template.html" %}
{% load i18n %}
{% block content %}
-{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
+{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
-{% trans "Please go to the following page and choose a new password:" %}
+{% trans "Please go to the following page and choose a new password:" %}
{% block reset_link %}
{{ protocol }}://{{ domain }}/auth/reset/{{ uid }}/{{ token }}
-{% endblock %}
-{% trans 'Your username, in case you’ve forgotten:' %} {{ user.get_username }}
+{% endblock %}
+{% trans 'Your username, in case you’ve forgotten:' %} {{ user.get_username }}
{% endblock %}
\ No newline at end of file
diff --git a/back/api/templates/registration/password_reset_email.html b/back/api/templates/registration/password_reset_email.html
deleted file mode 100644
index 13e34fcd..00000000
--- a/back/api/templates/registration/password_reset_email.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% load i18n %}{% autoescape off %}
-{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
-
-{% trans "Please go to the following page and choose a new password:" %}
-{% block reset_link %}
-{{ protocol }}://{{ domain }}/auth/reset/{{ uid }}/{{ token }}
-{% endblock %}
-{% trans 'Your username, in case you’ve forgotten:' %} {{ user.get_username }}
-