├── .gitignore ├── README.md └── app ├── app.py ├── createTables.py ├── db.py ├── main.py ├── requirements.txt ├── static ├── css │ ├── case.css │ ├── feedback.css │ ├── policehome.css │ ├── results.css │ ├── style.css │ ├── style1.css │ ├── style2.css │ ├── stylecs │ └── stylecs.css ├── img │ ├── bgvdo.mp4 │ └── police.png ├── screenshots │ ├── Neeraj Ram1.jpg │ ├── Neeraj1.jpg │ ├── Nidhin1.jpg │ ├── Ronaldo1.jpg │ └── dq1.jpg └── uploads │ ├── 1329279.jpg │ ├── Ashwin_Photo.jpg │ ├── IMG20220519200733.jpg │ ├── IMG_17965.jpg │ ├── IMG_20201121_011127_564.jpg │ ├── Mohanlal1.jpg │ ├── Neeraj.gif │ ├── Neeraj.jpg │ ├── Neeraj2.jpg │ ├── Photo-1.jpeg │ ├── Renjith_R.jpg │ ├── Resus.png │ ├── WhatsApp_Image_2022-05-26_at_10.05.01_AM.jpeg │ ├── WhatsApp_Image_2022-05-26_at_10.05.03_AM1.jpeg │ ├── cr7.jpg │ ├── dq2.jpg │ ├── hrithik.jpg │ ├── icons8-nfc-n-16.png │ ├── icons8-react-100.png │ ├── messi.jpg │ └── messi2.jpg └── templates ├── admin.html ├── adminhome.html ├── index.html ├── login.html ├── newcase.html ├── policehome.html ├── register.html ├── result.html ├── results.html ├── user.html └── useruploads.html /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__/ 2 | 3 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/app.py -------------------------------------------------------------------------------- /app/createTables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/createTables.py -------------------------------------------------------------------------------- /app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/db.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/main.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/static/css/case.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/case.css -------------------------------------------------------------------------------- /app/static/css/feedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/feedback.css -------------------------------------------------------------------------------- /app/static/css/policehome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/policehome.css -------------------------------------------------------------------------------- /app/static/css/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/results.css -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/style1.css -------------------------------------------------------------------------------- /app/static/css/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/style2.css -------------------------------------------------------------------------------- /app/static/css/stylecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/stylecs -------------------------------------------------------------------------------- /app/static/css/stylecs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/css/stylecs.css -------------------------------------------------------------------------------- /app/static/img/bgvdo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/img/bgvdo.mp4 -------------------------------------------------------------------------------- /app/static/img/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/img/police.png -------------------------------------------------------------------------------- /app/static/screenshots/Neeraj Ram1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/screenshots/Neeraj Ram1.jpg -------------------------------------------------------------------------------- /app/static/screenshots/Neeraj1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/screenshots/Neeraj1.jpg -------------------------------------------------------------------------------- /app/static/screenshots/Nidhin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/screenshots/Nidhin1.jpg -------------------------------------------------------------------------------- /app/static/screenshots/Ronaldo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/screenshots/Ronaldo1.jpg -------------------------------------------------------------------------------- /app/static/screenshots/dq1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/screenshots/dq1.jpg -------------------------------------------------------------------------------- /app/static/uploads/1329279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/1329279.jpg -------------------------------------------------------------------------------- /app/static/uploads/Ashwin_Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Ashwin_Photo.jpg -------------------------------------------------------------------------------- /app/static/uploads/IMG20220519200733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/IMG20220519200733.jpg -------------------------------------------------------------------------------- /app/static/uploads/IMG_17965.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/IMG_17965.jpg -------------------------------------------------------------------------------- /app/static/uploads/IMG_20201121_011127_564.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/IMG_20201121_011127_564.jpg -------------------------------------------------------------------------------- /app/static/uploads/Mohanlal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Mohanlal1.jpg -------------------------------------------------------------------------------- /app/static/uploads/Neeraj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Neeraj.gif -------------------------------------------------------------------------------- /app/static/uploads/Neeraj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Neeraj.jpg -------------------------------------------------------------------------------- /app/static/uploads/Neeraj2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Neeraj2.jpg -------------------------------------------------------------------------------- /app/static/uploads/Photo-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Photo-1.jpeg -------------------------------------------------------------------------------- /app/static/uploads/Renjith_R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Renjith_R.jpg -------------------------------------------------------------------------------- /app/static/uploads/Resus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/Resus.png -------------------------------------------------------------------------------- /app/static/uploads/WhatsApp_Image_2022-05-26_at_10.05.01_AM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/WhatsApp_Image_2022-05-26_at_10.05.01_AM.jpeg -------------------------------------------------------------------------------- /app/static/uploads/WhatsApp_Image_2022-05-26_at_10.05.03_AM1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/WhatsApp_Image_2022-05-26_at_10.05.03_AM1.jpeg -------------------------------------------------------------------------------- /app/static/uploads/cr7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/cr7.jpg -------------------------------------------------------------------------------- /app/static/uploads/dq2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/dq2.jpg -------------------------------------------------------------------------------- /app/static/uploads/hrithik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/hrithik.jpg -------------------------------------------------------------------------------- /app/static/uploads/icons8-nfc-n-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/icons8-nfc-n-16.png -------------------------------------------------------------------------------- /app/static/uploads/icons8-react-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/icons8-react-100.png -------------------------------------------------------------------------------- /app/static/uploads/messi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/messi.jpg -------------------------------------------------------------------------------- /app/static/uploads/messi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/static/uploads/messi2.jpg -------------------------------------------------------------------------------- /app/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/admin.html -------------------------------------------------------------------------------- /app/templates/adminhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/adminhome.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/login.html -------------------------------------------------------------------------------- /app/templates/newcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/newcase.html -------------------------------------------------------------------------------- /app/templates/policehome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/policehome.html -------------------------------------------------------------------------------- /app/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/register.html -------------------------------------------------------------------------------- /app/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/result.html -------------------------------------------------------------------------------- /app/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/results.html -------------------------------------------------------------------------------- /app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/user.html -------------------------------------------------------------------------------- /app/templates/useruploads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neerajram30/God-s-Eye/HEAD/app/templates/useruploads.html --------------------------------------------------------------------------------