-
Templates folder contains all the html files home.html base.html login.html register.html about.html post.html account.html delete_account.html user_post.html myposts.html editpost.html reset_password.html send_reset_token.html smile_store.html
- Home page of the webapp
- parent template of all the other html files
- from here all other is going to inherit the base html structure + some css rule
- login template for user login
- register template for user registration
- Informational content about creators
#reset_password.html
#send_reset_token.html
#smile_store.html
-
Static folder contaions all the css files (+ bootstrap) + profile pictures bootstrap.css bootstrap.js styles.css
profile_pics.folder - contains 2 base pictures, these are given based on the gender of the user
.py files : app.py forms.py models.py routes.py helper_funcs.py
- app py file has all the important code to handle, respectively run the server
- forms py contains the forms to collect data from users
- models py contains the model tables for data storage
- routes py contains all the routes required for login/register/logout/home/about pages