Forgot password flow

This commit is contained in:
Mouse Reeve
2020-10-02 13:32:19 -07:00
parent f8f4d09ede
commit d4b18678bd
12 changed files with 210 additions and 14 deletions

View File

@ -15,6 +15,14 @@ from environs import Env
env = Env()
# emailing
EMAIL_HOST = env('EMAIL_HOST')
EMAIL_PORT = env('EMAIL_PORT')
EMAIL_HOST_USER = env('EMAIL_HOST_USER')
EMAIL_HOST_PASSWORD = env('EMAIL_HOST_PASSWORD')
EMAIL_USE_TLS = env('EMAIL_USE_TLS')
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))