├── .gitignore ├── README.md ├── preview ├── addpage.png ├── datapage.png ├── firstpage.png └── lastpage.png ├── requirements.txt └── sourcecode ├── HRdata.txt ├── data.db ├── icon.ico ├── images ├── addmember.png ├── last.png ├── login1.png └── logo.png ├── main.py ├── poppler-0.68.0 ├── bin │ ├── AUTHORS │ ├── BINARIES │ ├── COPYING │ ├── COPYING3 │ ├── README │ ├── README-XPDF │ ├── freetype6.dll │ ├── jpeg62.dll │ ├── libcairo-2.dll │ ├── libexpat-1.dll │ ├── libfontconfig-1.dll │ ├── libgcc_s_dw2-1.dll │ ├── libpixman-1-0.dll │ ├── libpng16-16.dll │ ├── libpoppler-79.dll │ ├── libpoppler-cpp-0.dll │ ├── libstdc++-6.dll │ ├── libtiff3.dll │ ├── pdfdetach.exe │ ├── pdffonts.exe │ ├── pdfimages.exe │ ├── pdfinfo.exe │ ├── pdfseparate.exe │ ├── pdftocairo.exe │ ├── pdftohtml.exe │ ├── pdftoppm.exe │ ├── pdftops.exe │ ├── pdftotext.exe │ ├── pdfunite.exe │ └── zlib1.dll ├── include │ └── poppler │ │ └── cpp │ │ ├── poppler-document.h │ │ ├── poppler-embedded-file.h │ │ ├── poppler-font.h │ │ ├── poppler-global.h │ │ ├── poppler-image.h │ │ ├── poppler-page-renderer.h │ │ ├── poppler-page-transition.h │ │ ├── poppler-page.h │ │ ├── poppler-rectangle.h │ │ ├── poppler-toc.h │ │ └── poppler-version.h ├── lib │ ├── libpoppler-cpp.dll.a │ ├── libpoppler.dll.a │ └── pkgconfig │ │ ├── poppler-cairo.pc │ │ ├── poppler-cpp.pc │ │ ├── poppler-splash.pc │ │ └── poppler.pc └── share │ └── man │ └── man1 │ ├── pdfdetach.1 │ ├── pdffonts.1 │ ├── pdfimages.1 │ ├── pdfinfo.1 │ ├── pdfseparate.1 │ ├── pdftocairo.1 │ ├── pdftohtml.1 │ ├── pdftoppm.1 │ ├── pdftops.1 │ ├── pdftotext.1 │ └── pdfunite.1 └── salarysliptemp.docx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/README.md -------------------------------------------------------------------------------- /preview/addpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/preview/addpage.png -------------------------------------------------------------------------------- /preview/datapage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/preview/datapage.png -------------------------------------------------------------------------------- /preview/firstpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/preview/firstpage.png -------------------------------------------------------------------------------- /preview/lastpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/preview/lastpage.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/requirements.txt -------------------------------------------------------------------------------- /sourcecode/HRdata.txt: -------------------------------------------------------------------------------- 1 | {'username':'admin', 2 | 'password':'1234'} -------------------------------------------------------------------------------- /sourcecode/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/data.db -------------------------------------------------------------------------------- /sourcecode/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/icon.ico -------------------------------------------------------------------------------- /sourcecode/images/addmember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/images/addmember.png -------------------------------------------------------------------------------- /sourcecode/images/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/images/last.png -------------------------------------------------------------------------------- /sourcecode/images/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/images/login1.png -------------------------------------------------------------------------------- /sourcecode/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/images/logo.png -------------------------------------------------------------------------------- /sourcecode/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/main.py -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/AUTHORS -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/BINARIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/BINARIES -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/COPYING -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/COPYING3 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/README -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/README-XPDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/README-XPDF -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/freetype6.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/jpeg62.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libcairo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libcairo-2.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libexpat-1.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libfontconfig-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libfontconfig-1.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libpixman-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libpixman-1-0.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libpng16-16.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libpoppler-79.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libpoppler-79.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libpoppler-cpp-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libpoppler-cpp-0.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libstdc++-6.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/libtiff3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/libtiff3.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdfdetach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdfdetach.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdffonts.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdffonts.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdfimages.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdfimages.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdfinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdfinfo.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdfseparate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdfseparate.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdftocairo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdftocairo.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdftohtml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdftohtml.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdftoppm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdftoppm.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdftops.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdftops.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdftotext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdftotext.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/pdfunite.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/pdfunite.exe -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/bin/zlib1.dll -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-document.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-embedded-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-embedded-file.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-font.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-global.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-image.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page-renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page-renderer.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page-transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page-transition.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-page.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-rectangle.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-toc.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/include/poppler/cpp/poppler-version.h -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/libpoppler-cpp.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/libpoppler-cpp.dll.a -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/libpoppler.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/libpoppler.dll.a -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-cairo.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-cairo.pc -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-cpp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-cpp.pc -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-splash.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/pkgconfig/poppler-splash.pc -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/lib/pkgconfig/poppler.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/lib/pkgconfig/poppler.pc -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdfdetach.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdfdetach.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdffonts.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdffonts.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdfimages.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdfimages.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdfinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdfinfo.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdfseparate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdfseparate.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdftocairo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdftocairo.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdftohtml.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdftohtml.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdftoppm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdftoppm.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdftops.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdftops.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdftotext.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdftotext.1 -------------------------------------------------------------------------------- /sourcecode/poppler-0.68.0/share/man/man1/pdfunite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/poppler-0.68.0/share/man/man1/pdfunite.1 -------------------------------------------------------------------------------- /sourcecode/salarysliptemp.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/salary-managment/HEAD/sourcecode/salarysliptemp.docx --------------------------------------------------------------------------------