This is an automated email from the ASF dual-hosted git repository.
machristie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git.
from cddab50 Merge branch 'airavata-3030'
new 6603754 AIRAVATA-2925 Forgot/reset password forms
new cd9c637 AIRAVATA-2925 Handle unverified account in forgot password
new c7ebe40 AIRAVATA-2925 Adding forgot password link to login form
new c5ce801 AIRAVATA-2925 Factored out common form code
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
django_airavata/apps/auth/forms.py | 43 +++++++
django_airavata/apps/auth/iam_admin_client.py | 6 +
.../auth/migrations/0004_password_reset_request.py | 64 ++++++++++
django_airavata/apps/auth/models.py | 9 ++
.../django_airavata_auth/create_account.html | 52 +-------
.../django_airavata_auth/forgot_password.html | 24 ++++
.../django_airavata_auth/partials/form.html | 13 ++
.../django_airavata_auth/partials/form_field.html | 25 ++++
.../partials/non_field_errors.html | 6 +
.../partials/username_password_login_form.html | 1 +
.../django_airavata_auth/reset_password.html | 23 ++++
.../django_airavata_auth/verify_email.html | 44 +------
django_airavata/apps/auth/urls.py | 3 +
django_airavata/apps/auth/views.py | 140 +++++++++++++++++++--
14 files changed, 357 insertions(+), 96 deletions(-)
create mode 100644
django_airavata/apps/auth/migrations/0004_password_reset_request.py
create mode 100644
django_airavata/apps/auth/templates/django_airavata_auth/forgot_password.html
create mode 100644
django_airavata/apps/auth/templates/django_airavata_auth/partials/form.html
create mode 100644
django_airavata/apps/auth/templates/django_airavata_auth/partials/form_field.html
create mode 100644
django_airavata/apps/auth/templates/django_airavata_auth/partials/non_field_errors.html
create mode 100644
django_airavata/apps/auth/templates/django_airavata_auth/reset_password.html