Forgot password flow
This commit is contained in:
parent
f8f4d09ede
commit
d4b18678bd
12 changed files with 210 additions and 14 deletions
|
@ -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__)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue