Math Drill:
- Wrote a login.tpl page with user and password fields
- Researched hashing algorithms and how to safely store passwords
- Began creating a database to hold username and password and eventually other stuff
application: math-drill version: 1 runtime: python27 #Python3 not supported, so 2.7 was used api_version: 1 threadsafe: no #One tutorial said to do this, but since threads are not used it probably doesn't matter handlers: - url: /static static_dir: static - url: /.* script: run.app #Using run.py causes strange debug output to show up on the webpage