├── .flaskenv ├── .gitignore ├── LICENSE ├── README.md ├── app ├── __init__.py ├── email.py ├── errors.py ├── forms.py ├── models.py ├── routes.py ├── templates │ ├── 401.html │ ├── 404.html │ ├── 500.html │ ├── admin.html │ ├── base.html │ ├── edit_profile.html │ ├── email │ │ ├── reset_password.html │ │ └── reset_password.txt │ ├── index.html │ ├── login.html │ ├── notadmin.html │ ├── register.html │ ├── reset_password.html │ ├── reset_password_request.html │ └── user.html ├── translations │ └── tr │ │ └── LC_MESSAGES │ │ └── messages.po └── utils │ └── decorators.py ├── babel.cfg ├── config.py ├── requirements.txt ├── run.py └── template.py /.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=template.py 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/email.py -------------------------------------------------------------------------------- /app/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/errors.py -------------------------------------------------------------------------------- /app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/forms.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/models.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/templates/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/401.html -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/404.html -------------------------------------------------------------------------------- /app/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/500.html -------------------------------------------------------------------------------- /app/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/admin.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/edit_profile.html -------------------------------------------------------------------------------- /app/templates/email/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/email/reset_password.html -------------------------------------------------------------------------------- /app/templates/email/reset_password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/email/reset_password.txt -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/login.html -------------------------------------------------------------------------------- /app/templates/notadmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/notadmin.html -------------------------------------------------------------------------------- /app/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/register.html -------------------------------------------------------------------------------- /app/templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/reset_password.html -------------------------------------------------------------------------------- /app/templates/reset_password_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/reset_password_request.html -------------------------------------------------------------------------------- /app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/templates/user.html -------------------------------------------------------------------------------- /app/translations/tr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/translations/tr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /app/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/app/utils/decorators.py -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/babel.cfg -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/run.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkermanap/flask_ornek/HEAD/template.py --------------------------------------------------------------------------------