Thank for your registration
8 |9 | Please confirm your Email to continue. 10 |
11 |You are not authorized to see this page. 11 |
12 |Sorry, that page doesn't exist.
9 | 10 |Sorry, something went wrong on our system. Don't panic, we are fixing it! Please try again later.
11 |${JSON.stringify(currentData, null, 2)}
46 | Your development environment is ready. Use this framework to build your application.
15 | 16 |Getting Started:
20 |1. Edit templates in enferno/templates/
2. Add public routes in enferno/public/views.py
3. Create models in enferno/public/models.py
or enferno/portal/models.py
Current environment: ${ config.ENV || 'development' }
Debug mode: ${ config.DEBUG || 'false' }
Enferno Framework • Documentation
44 |9 | Please confirm your Email to continue. 10 |
11 |Your password has been changed.
2 | {% if security.recoverable %} 3 |If you did not change your password, click here to reset it.
4 | {% endif %} 5 | -------------------------------------------------------------------------------- /enferno/templates/security/email/change_notice.txt: -------------------------------------------------------------------------------- 1 | Your password has been changed 2 | {% if security.recoverable %} 3 | If you did not change your password, click the link below to reset it. 4 | {{ url_for_security('forgot_password', _external=True) }} 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /enferno/templates/security/email/confirmation_instructions.html: -------------------------------------------------------------------------------- 1 |Please confirm your email through the link below:
2 | 3 | -------------------------------------------------------------------------------- /enferno/templates/security/email/confirmation_instructions.txt: -------------------------------------------------------------------------------- 1 | Please confirm your email through the link below: 2 | 3 | {{ confirmation_link }} -------------------------------------------------------------------------------- /enferno/templates/security/email/login_instructions.html: -------------------------------------------------------------------------------- 1 |Welcome {{ user.email }}!
2 | 3 |You can log into your through the link below:
4 | 5 | -------------------------------------------------------------------------------- /enferno/templates/security/email/login_instructions.txt: -------------------------------------------------------------------------------- 1 | Welcome {{ user.email }}! 2 | 3 | You can log into your through the link below: 4 | 5 | {{ login_link }} -------------------------------------------------------------------------------- /enferno/templates/security/email/reset_instructions.html: -------------------------------------------------------------------------------- 1 |Click here to reset your password
-------------------------------------------------------------------------------- /enferno/templates/security/email/reset_instructions.txt: -------------------------------------------------------------------------------- 1 | Click the link below to reset your password: 2 | 3 | {{ reset_link }} -------------------------------------------------------------------------------- /enferno/templates/security/email/reset_notice.html: -------------------------------------------------------------------------------- 1 |Your password has been reset
-------------------------------------------------------------------------------- /enferno/templates/security/email/reset_notice.txt: -------------------------------------------------------------------------------- 1 | Your password has been reset -------------------------------------------------------------------------------- /enferno/templates/security/email/welcome.html: -------------------------------------------------------------------------------- 1 |Welcome {{ user.email }}!
2 | 3 | {% if security.confirmable %} 4 |You can confirm your email through the link below:
5 | 6 | 7 | {% endif %} -------------------------------------------------------------------------------- /enferno/templates/security/email/welcome.txt: -------------------------------------------------------------------------------- 1 | Welcome {{ user.email }}! 2 | 3 | {% if security.confirmable %} 4 | You can confirm your email through the link below: 5 | 6 | {{ confirmation_link }} 7 | {% endif %} -------------------------------------------------------------------------------- /enferno/templates/security/forgot_password.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | 3 | {% block content %} 4 |155 | By continuing, you agree to Enferno's 156 | Terms of Service and 157 | Privacy Policy. 158 |
159 |