0

I am trying to use django password reset app whose usage steps are here,

http://django-password-reset.readthedocs.org/en/latest/quickstart.html

but I'm unable to understand its documentation, specially the 3rd step which is

Link to the password reset page: {% url "password_reset_recover" %}

What steps should I follow to use this app, or is there any alternative password reset app, which have clear documentation

Thanks

Community
  • 1
  • 1
vaibhav1312
  • 863
  • 4
  • 13
  • 31

1 Answers1

-1

You may need to read the documentation

URL Returns an absolute path reference (a URL without the domain name) matching a given view function and optional parameters. Any special characters in the resulting path will be encoded using iri_to_uri().

This is a way to output links without violating the DRY principle by having to hard-code URLs in your templates:

{% url 'some-url-name' %}

In short, this is a way to map the urls from your urls.py to your templates

For alternatives there is always django-allauth when it comes to handling users

cdvv7788
  • 2,021
  • 1
  • 18
  • 26