├── LICENSE ├── README.md ├── analyze.py ├── config.py ├── run.py ├── static ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── bootstrapValidator.js │ │ ├── jquery-3.3.1.min.js │ │ └── popper.js ├── css │ ├── admin.css │ ├── exam.css │ └── index.css ├── images │ ├── boy.jpg │ ├── girl.jpg │ ├── work1.jpg │ ├── work2.jpg │ └── work3.jpg └── javascript │ ├── admin.js │ ├── exam.js │ └── index.js └── templates ├── admin.html ├── base.html ├── exam.html ├── index.html ├── results.html └── temp.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/analyze.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/config.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/run.py -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrapValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/bootstrapValidator.js -------------------------------------------------------------------------------- /static/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/bootstrap/js/popper.js -------------------------------------------------------------------------------- /static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/css/admin.css -------------------------------------------------------------------------------- /static/css/exam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/css/exam.css -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/images/boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/images/boy.jpg -------------------------------------------------------------------------------- /static/images/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/images/girl.jpg -------------------------------------------------------------------------------- /static/images/work1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/images/work1.jpg -------------------------------------------------------------------------------- /static/images/work2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/images/work2.jpg -------------------------------------------------------------------------------- /static/images/work3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/images/work3.jpg -------------------------------------------------------------------------------- /static/javascript/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/javascript/admin.js -------------------------------------------------------------------------------- /static/javascript/exam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/javascript/exam.js -------------------------------------------------------------------------------- /static/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/static/javascript/index.js -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/exam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/exam.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/results.html -------------------------------------------------------------------------------- /templates/temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamnltk/exam_system_python-flask/HEAD/templates/temp.html --------------------------------------------------------------------------------