diff --git a/docs/src/index.md b/docs/src/index.md index d8b1b4b..9183b31 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -10,9 +10,12 @@ format. ## Demo Site -We currently have a running demo up at -[https://pin.37soloist.com/](https://pin.37soloist.com/). If you'd like to -showcase your Pinry website toss us a link! +We currently have a few demos up at: + +- [https://pin.37soloist.com/](https://pin.37soloist.com/) +- [https://pinry-demo.lapo.it/](https://pinry-demo.lapo.it/) + +If you'd like to showcase your Pinry website toss us a link! ## As Seen On diff --git a/docs/src/passwords.md b/docs/src/passwords.md new file mode 100644 index 0000000..303fa0e --- /dev/null +++ b/docs/src/passwords.md @@ -0,0 +1,9 @@ +# Updating Passwords + +Currently we don't have a good "forgot my password" method on Pinry since that +generally requries an email to be sent. The current method for changing +passwords involves: + +- Create a new super user `pipenv run python manage.py createsuperuser` +- Login to your admin panel `{your_website_url}/admin/` +- Go to the users section, select the user, change their password. diff --git a/mkdocs.yml b/mkdocs.yml index 4e026e6..5a9cba2 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -18,6 +18,7 @@ nav: - Extensions: 'extensions.md' - Theories: 'theories.md' - Docs: 'docs.md' + - Passwords: 'passwords.md' - Assets: 'assets.md' - Contributing: 'contributing.md' - License: 'license.md'