├── .env ├── __pycache__ └── app.cpython-312.pyc ├── app.py ├── static └── styles.css └── templates └── index.html /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/frin-try/HEAD/.env -------------------------------------------------------------------------------- /__pycache__/app.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/frin-try/HEAD/__pycache__/app.cpython-312.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/frin-try/HEAD/app.py -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/frin-try/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/frin-try/HEAD/templates/index.html --------------------------------------------------------------------------------