This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git
commit c7ebe4064e677cdf07aada9d8b36597b18cfb982 Author: Marcus Christie <[email protected]> AuthorDate: Fri May 10 10:34:57 2019 -0400 AIRAVATA-2925 Adding forgot password link to login form --- .../django_airavata_auth/partials/username_password_login_form.html | 1 + 1 file changed, 1 insertion(+) diff --git a/django_airavata/apps/auth/templates/django_airavata_auth/partials/username_password_login_form.html b/django_airavata/apps/auth/templates/django_airavata_auth/partials/username_password_login_form.html index f3d934f..27e4394 100644 --- a/django_airavata/apps/auth/templates/django_airavata_auth/partials/username_password_login_form.html +++ b/django_airavata/apps/auth/templates/django_airavata_auth/partials/username_password_login_form.html @@ -13,6 +13,7 @@ <div class="form-group"> <label for="password">Password</label> <input type="password" class="form-control" id="password" name="password" placeholder="Password" required> + <small class="form-text text-muted"><a href="{% url 'django_airavata_auth:forgot_password' %}" class="text-reset">Forgot your password?</a></small> </div> {% if next %} <input type="hidden" name="next" value="{{ next }}"/>
