├── LICENSE ├── README.md ├── Section 1 ├── 1.3 End │ └── enrollment │ │ └── .flaskenv ├── 1.4 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── main.py │ │ └── requirements.txt └── 1.4 Start │ └── enrollment │ └── .flaskenv ├── Section 2 ├── 2.1 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ ├── main.py │ │ └── requirements.txt ├── 2.1 Start │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── main.py │ │ └── requirements.txt ├── 2.2 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ └── routes.py │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 2.2 Start │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ ├── main.py │ │ └── requirements.txt ├── 2.3 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── includes │ │ │ └── footer.html │ │ │ └── index.html │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 2.3 Start │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ └── routes.py │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 2.4 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ └── index.html │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt └── 2.4 Start │ └── enrollment │ ├── .flaskenv │ ├── .vscode │ └── settings.json │ ├── __pycache__ │ └── main.cpython-37.pyc │ ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── includes │ │ └── footer.html │ │ └── index.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── Section 3 ├── 3.1 End │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ └── layout.html │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 3.1 Start │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ └── index.html │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 3.2 End │ ├── .flaskenv │ ├── .vscode │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 3.2 Start │ └── enrollment │ │ ├── .flaskenv │ │ ├── .vscode │ │ └── settings.json │ │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ └── layout.html │ │ ├── config.py │ │ ├── main.py │ │ └── requirements.txt ├── 3.3 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 3.3 Start │ ├── .flaskenv │ ├── .vscode │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 3.4 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt └── 3.4 Start │ ├── .flaskenv │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── __pycache__ │ └── main.cpython-37.pyc │ ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── Section 4 ├── 4.1 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.1 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.2 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.2 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.3 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.3 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ └── register.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.4 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.4 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 4.5 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt └── 4.5 Start │ ├── .flaskenv │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc │ ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── Section 5 ├── 5.1 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.1 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.2 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.2 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.3 End _TOOLONG │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.3 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.3 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.4 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.4 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.5 End Long │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.5 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.5 Start │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt ├── 5.6 End │ ├── .flaskenv │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ └── main.cpython-37.pyc │ ├── application │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── routes.cpython-37.pyc │ │ ├── forms.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── uta-logo-100.png │ │ │ │ ├── uta-logo-200.png │ │ │ │ ├── uta-logo-250.png │ │ │ │ ├── uta-logo-350.png │ │ │ │ └── uta-logo.png │ │ └── templates │ │ │ ├── courses.html │ │ │ ├── enrollment.html │ │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt └── 5.6 Start │ ├── .flaskenv │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc │ ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html │ ├── config.py │ ├── main.py │ └── requirements.txt └── Section 6 ├── 6.1 End ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.1 Start ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.2 End ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.2 Start ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.3 End ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.3 Start ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.4 End ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.4 Start ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt ├── 6.5 End ├── .flaskenv ├── .vscode │ ├── launch.json │ └── settings.json ├── __pycache__ │ ├── config.cpython-37.pyc │ └── main.cpython-37.pyc ├── application │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── course_list.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── routes.cpython-37.pyc │ ├── course_list.py │ ├── forms.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ └── main.css │ │ └── images │ │ │ ├── uta-logo-100.png │ │ │ ├── uta-logo-200.png │ │ │ ├── uta-logo-250.png │ │ │ ├── uta-logo-350.png │ │ │ └── uta-logo.png │ └── templates │ │ ├── courses.html │ │ ├── enrollment.html │ │ ├── includes │ │ ├── footer.html │ │ └── nav.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ └── user.html ├── config.py ├── main.py └── requirements.txt └── 6.5 Start ├── .flaskenv ├── .vscode ├── launch.json └── settings.json ├── __pycache__ ├── config.cpython-37.pyc └── main.cpython-37.pyc ├── application ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ └── routes.cpython-37.pyc ├── forms.py ├── models.py ├── routes.py ├── static │ ├── css │ │ └── main.css │ └── images │ │ ├── uta-logo-100.png │ │ ├── uta-logo-200.png │ │ ├── uta-logo-250.png │ │ ├── uta-logo-350.png │ │ └── uta-logo.png └── templates │ ├── courses.html │ ├── enrollment.html │ ├── includes │ ├── footer.html │ └── nav.html │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── register.html │ └── user.html ├── config.py ├── main.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # Full-Stack-Web-Development-with-Flask 5 | Full-Stack Web Development with Flask, published by Packt 6 | -------------------------------------------------------------------------------- /Section 1/1.3 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 1/1.4 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 1/1.4 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 1/1.4 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 1/1.4 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 1/1.4 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from flask import Flask 3 | 4 | app = Flask(__name__) 5 | 6 | @app.route("/") 7 | @app.route("/index") 8 | def index(): 9 | return "

Hello Earth!!

" 10 | 11 | -------------------------------------------------------------------------------- /Section 1/1.4 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 1/1.4 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 1/1.4 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.1 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | @app.route("/") 6 | @app.route("/index") 7 | def index(): 8 | return "

Hello Earth!!

" 9 | -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.1 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.1 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.1 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.1 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.1 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.1 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.1 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from flask import Flask 3 | 4 | app = Flask(__name__) 5 | 6 | @app.route("/") 7 | @app.route("/index") 8 | def index(): 9 | return "

Hello Earth!!

" 10 | 11 | -------------------------------------------------------------------------------- /Section 2/2.1 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.1 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.2 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/application/routes.py: -------------------------------------------------------------------------------- 1 | from application import app 2 | 3 | @app.route("/") 4 | @app.route("/index") 5 | def index(): 6 | return "

Hello Earth!!

" -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.2 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.2 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.2 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | @app.route("/") 6 | @app.route("/index") 7 | def index(): 8 | return "

Hello Earth!!

" 9 | -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.2 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.2 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.3 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/application/routes.py: -------------------------------------------------------------------------------- 1 | from application import app 2 | from flask import render_template 3 | 4 | @app.route("/") 5 | @app.route("/index") 6 | def index(): 7 | return render_template("index.html") -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.3 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.3 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.3 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/application/routes.py: -------------------------------------------------------------------------------- 1 | from application import app 2 | 3 | @app.route("/") 4 | @app.route("/index") 5 | def index(): 6 | return "

Hello Earth!!

" -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.3 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.3 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.4 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.4 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.4 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.4 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/application/routes.py: -------------------------------------------------------------------------------- 1 | from application import app 2 | from flask import render_template 3 | 4 | @app.route("/") 5 | @app.route("/index") 6 | def index(): 7 | return render_template("index.html") -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 2/2.4 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 2/2.4 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.1 End/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.1 End/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.1 End/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.1 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.1 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.1 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.2 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.2 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.2 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.2 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 3/3.2 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 3/3.2 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 3/3.2 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 3/3.2 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 3/3.2 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 3/3.2 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.2 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.2 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 End/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 Start/enrollment/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.2 Start/enrollment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.2 Start/enrollment/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.3 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.3 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.3 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 End/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.3 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 3/3.3 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 3/3.3 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 3/3.3 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 3/3.3 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 3/3.3 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 3/3.3 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.3 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.3 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 End/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.3 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.3 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.3 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 3/3.3 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 3/3.3 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.3 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.3 Start/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.4 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.4 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.4 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 End/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.4 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 3/3.4 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 3/3.4 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 3/3.4 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 3/3.4 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 3/3.4 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 3/3.4 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.4 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.4 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 End/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.4 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 3/3.4 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 3/3.4 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 3/3.4 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 3/3.4 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 3/3.4 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 3/3.4 Start/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.1 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.1 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.1 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 End/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 4/4.1 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.1 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.1 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.1 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.1 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.1 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.1 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 4/4.1 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.1 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 End/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.1 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.1 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.1 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.1 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.1 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.1 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.1 Start/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.2 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.2 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.2 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.2 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.2 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.2 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.2 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.2 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.2 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.2 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.2 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 End/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.2 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.2 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.2 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | 6 | from application import routes 7 | 8 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.2 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.2 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KY = os.environ.get('SECRET_KEY') or "secret_string" 5 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.2 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.2 Start/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.3 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.3 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.3 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.3 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.3 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.3 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.3 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.3 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.3 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.3 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.3 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 End/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.3 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.3 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.3 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.3 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.3 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.3 Start/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.4 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.4 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.4 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.4 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.4 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.4 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.4 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.4 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.4 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.4 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.4 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 End/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.4 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.4 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.4 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.4 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.4 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.4 Start/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.5 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.5 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.5 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.5 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.5 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.5 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.5 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.5 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.5 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.5 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.5 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 End/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.5 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 4/4.5 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 4/4.5 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 4/4.5 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 4/4.5 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 4/4.5 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.1 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.1 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.1 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/application/forms.py: -------------------------------------------------------------------------------- 1 | from flask_wtf import FlaskForm 2 | from wtforms import StringField, PasswordField, SubmitField, BooleanField 3 | from wtforms.validators import DataRequired 4 | 5 | -------------------------------------------------------------------------------- /Section 5/5.1 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.1 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.1 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.1 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.1 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.1 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.1 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.1 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.1 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.1 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.1 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.1 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.1 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.1 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.1 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.2 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.2 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.2 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.2 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.2 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.2 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.2 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.2 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.2 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.2 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.2 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.2 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.2 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.2 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/forms.py: -------------------------------------------------------------------------------- 1 | from flask_wtf import FlaskForm 2 | from wtforms import StringField, PasswordField, SubmitField, BooleanField 3 | from wtforms.validators import DataRequired 4 | 5 | -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.2 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.2 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.2 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.2 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End _TOOLONG/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End _TOOLONG/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End _TOOLONG/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.3 End _TOOLONG/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End _TOOLONG/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.3 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.3 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.3 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.3 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.3 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.3 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.3 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.3 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.3 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.3 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.3 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.3 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.3 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.3 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.3 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.3 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.3 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.3 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.4 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.4 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.4 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.4 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.4 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.4 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.4 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.4 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.4 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.4 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.4 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.4 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.4 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.4 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.4 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.4 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.4 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.4 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.4 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.5 End Long/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.5 End Long/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.5 End Long/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End Long/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End Long/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.5 End Long/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.5 End Long/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.5 End Long/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.5 End Long/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.5 End Long/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.5 End Long/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.5 End Long/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End Long/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.5 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.5 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.5 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.5 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.5 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.5 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.5 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.5 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.5 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.5 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.5 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.5 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.5 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.5 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.5 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.5 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.5 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.5 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.5 Start/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.6 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.6 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.6 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.6 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.6 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.6 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.6 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.6 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.6 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.6 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.6 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 End/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.6 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 5/5.6 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 5/5.6 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 5/5.6 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 5/5.6 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or "secret_string" 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 5/5.6 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 5/5.6 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 5/5.6 Start/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.1 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.1 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.1 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.1 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.1 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.1 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.1 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.1 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 6/6.1 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.1 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.1 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 End/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.1 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.1 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.1 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.1 Start/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 6/6.1 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.1 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.1 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.1 Start/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.2 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.2 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.2 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/application/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.2 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.2 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.2 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.2 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.2 End/application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /Section 6/6.2 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.2 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.2 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 End/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.2 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.2 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.2 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.2 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.2 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.2 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.2 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.2 Start/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.3 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.3 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.3 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.3 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.3 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.3 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.3 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.3 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.3 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.3 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 End/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.3 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.3 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.3 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.3 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.3 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.3 Start/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.4 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.4 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.4 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.4 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.4 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.4 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.4 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.4 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.4 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.4 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 End/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.4 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.4 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.4 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.4 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.4 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.4 Start/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.5 End/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.5 End/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.5 End/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 End/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 End/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 End/application/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 End/application/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 End/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.5 End/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.5 End/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.5 End/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.5 End/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.5 End/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.5 End/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.5 End/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 End/requirements.txt -------------------------------------------------------------------------------- /Section 6/6.5 Start/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_ENV=development 2 | FLASK_APP=main.py -------------------------------------------------------------------------------- /Section 6/6.5 Start/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "venv\\Scripts\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 6/6.5 Start/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 Start/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/static/images/uta-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/static/images/uta-logo-100.png -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/static/images/uta-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/static/images/uta-logo-200.png -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/static/images/uta-logo-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/static/images/uta-logo-250.png -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/static/images/uta-logo-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/static/images/uta-logo-350.png -------------------------------------------------------------------------------- /Section 6/6.5 Start/application/static/images/uta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/application/static/images/uta-logo.png -------------------------------------------------------------------------------- /Section 6/6.5 Start/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | class Config(object): 4 | SECRET_KEY = os.environ.get('SECRET_KEY') or b'6\xe9\xda\xead\x81\xf7\x8d\xbbH\x87\xe8m\xdd3%' 5 | 6 | MONGODB_SETTINGS = { 'db' : 'UTA_Enrollment' } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Section 6/6.5 Start/main.py: -------------------------------------------------------------------------------- 1 | 2 | from application import app -------------------------------------------------------------------------------- /Section 6/6.5 Start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Web-Development-with-Flask/ecba13e1beb55d3e937ebf3b391288c8ca25bc31/Section 6/6.5 Start/requirements.txt --------------------------------------------------------------------------------