├── HELP.md ├── README.md ├── app.py ├── finance.db ├── helpers.py ├── requirements.txt ├── static ├── favicon.ico └── styles.css └── templates ├── apology.html ├── buy.html ├── history.html ├── index.html ├── layout.html ├── login.html ├── quote.html ├── quotes_page.html ├── register.html └── sell.html /HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/HELP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/app.py -------------------------------------------------------------------------------- /finance.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/finance.db -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/helpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/apology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/apology.html -------------------------------------------------------------------------------- /templates/buy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/buy.html -------------------------------------------------------------------------------- /templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/history.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/quote.html -------------------------------------------------------------------------------- /templates/quotes_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/quotes_page.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/sell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/cs50-pset9-flask/HEAD/templates/sell.html --------------------------------------------------------------------------------