├── .gitignore ├── Contributing.md ├── LICENSE ├── README.md ├── app.py ├── forms.py ├── manage.py ├── migrations ├── README ├── __pycache__ │ └── env.cpython-39.pyc ├── alembic.ini ├── env.py └── script.py.mako ├── models.py ├── requirements.txt ├── routes.py ├── run ├── static ├── login.png └── register.png └── templates ├── auth.html ├── base.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | *.db 3 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/app.py -------------------------------------------------------------------------------- /forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/forms.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /migrations/__pycache__/env.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/migrations/__pycache__/env.cpython-39.pyc -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/routes.py -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/run -------------------------------------------------------------------------------- /static/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/static/login.png -------------------------------------------------------------------------------- /static/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/static/register.png -------------------------------------------------------------------------------- /templates/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/templates/auth.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/User-Authentication-in-Flask/HEAD/templates/index.html --------------------------------------------------------------------------------