An email with password reset instructions has been sent.
+
+{% endblock %}
diff --git a/accounts/templates/accounts/password_reset_email.html b/accounts/templates/accounts/password_reset_email.html
new file mode 100644
index 0000000..c971197
--- /dev/null
+++ b/accounts/templates/accounts/password_reset_email.html
@@ -0,0 +1,10 @@
+You're receiving this email because you requested a password reset for your user account at {{ site_name }}.
+
+Please go to the following page and choose a new password:
+{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
+
+Your username, in case you’ve forgotten: {{ user.get_username }}
+
+Sincerely,
+Cache Valley Martial Arts & Fitness
+
diff --git a/accounts/templates/accounts/password_reset_form.html b/accounts/templates/accounts/password_reset_form.html
new file mode 100644
index 0000000..b542bea
--- /dev/null
+++ b/accounts/templates/accounts/password_reset_form.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
Reset your password
+
Enter your email address below and we'll send you instructions on how to reset your password.
{% trans 'The following e-mail addresses are associated with your account:' %}
-
- {% else %}
-
{% trans 'Warning:'%} {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}
-
- {% if confirmation %}
-
- {% user_display confirmation.email_address.user as user_display %}
-
-
{% blocktrans with confirmation.email_address.email as email %}Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.{% endblocktrans %}
-
- {% if user.is_authenticated %}
- {% include "account/snippets/already_logged_in.html" %}
- {% endif %}
-
-
{% blocktrans %}We have sent you an e-mail. If you have not received it please check your spam folder. Otherwise contact us if you do not receive it in a few minutes.{% endblocktrans %}
-
-{% endblock %}
diff --git a/templates/account/password_reset_email.html b/templates/account/password_reset_email.html
deleted file mode 100755
index 8c37094..0000000
--- a/templates/account/password_reset_email.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load i18n %}{% autoescape off %}
-{% blocktranslate %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktranslate %}
-
-{% translate "Please go to the following page and choose a new password:" %}
-{% block reset_link %}
-{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
-{% endblock %}
-{% translate 'Your username, in case you’ve forgotten:' %} {{ user.get_username }}
-
-{% endautoescape %}
diff --git a/templates/account/password_reset_from_key.html b/templates/account/password_reset_from_key.html
deleted file mode 100644
index 4439659..0000000
--- a/templates/account/password_reset_from_key.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends "base.html" %}
-
-{% load i18n %}
-{% block head_title %}{% trans "Change Password" %}{% endblock %}
-
-{% block content %}
-
-
{% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %}
-
- {% if token_fail %}
- {% url 'account_reset_password' as passwd_reset_url %}
-
{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}