- Siddhartha Khuntia
- Sibasish Mahanta
- Utkarsh Singh
- Suraj Kumar Kushwaha
- models ---> that will contain the model of mongodb
- public ---> will contain logic files and styles files
- routes ---> will contain all the routes/pages
- views ---> that will contain html files in ejs format
- server.js ---> will be the entry point of web app
.
βββ models
β βββ loan.js
β βββ negotiateLoans.js
β βββ profile.js
βββ package.json
βββ package-lock.json
βββ public
β βββ images
β β βββ login-page-wallpaper.jpg
β β βββ logo.png
β β βββ menu.svg
β βββ scripts
β β βββ header.js
β β βββ index.js
β β βββ profilePreview.js
β β βββ timeAgo.js
β βββ styles
β βββ dashboard.css
β βββ footer.css
β βββ header.css
β βββ loanrequest.css
β βββ login.css
β βββ main.css
β βββ notification.css
β βββ profile.css
β βββ show.css
βββ README.md
βββ rough.txt
βββ routes
β βββ auth.js
β βββ contactus.js
β βββ dashboard.js
β βββ index.js
β βββ loanrequest.js
β βββ negotiateLoan.js
β βββ notification.js
β βββ profile.js
βββ server.js
βββ views
βββ contactus.ejs
βββ dashboard.ejs
βββ index.ejs
βββ layouts
β βββ layout.ejs
βββ loanrequest
β βββ edit.ejs
β βββ _form_fields2.ejs
β βββ _form_fields.ejs
β βββ new.ejs
βββ login.ejs
βββ notification.ejs
βββ partials
β βββ deleteForm.ejs
β βββ dualDeleteForm.ejs
β βββ errorMessage.ejs
β βββ footer.ejs
β βββ header.ejs
βββ profile
βββ edit.ejs
βββ _form_fields.ejs
βββ new.ejs
βββ show.ejs