├── .htaccess ├── LICENSE ├── README.md ├── css ├── croppie.css ├── fonts │ ├── MaterialIcons-Regular.eot │ ├── MaterialIcons-Regular.ttf │ ├── MaterialIcons-Regular.woff │ ├── MaterialIcons-Regular.woff2 │ ├── codepoints │ └── index.php ├── index.php ├── litepicker.css ├── pretty-checkbox.css ├── select2.css └── style.css ├── db └── db_escuela.sql ├── home.php ├── images ├── 404.svg ├── icon_user.png ├── index.php ├── loader.gif ├── loader_user.gif ├── logo.svg ├── logo_white.svg └── users │ ├── index.php │ ├── old │ └── index.php │ └── user.png ├── index.php ├── js ├── controls │ ├── buttons.js │ ├── dataexpandable.js │ ├── index.php │ ├── menumobile.js │ ├── options.js │ └── unsetnotif.js ├── external │ ├── croppie.js │ ├── gsap.min.js │ ├── index.php │ ├── jquery.min.js │ ├── litepicker.js │ ├── prefixfree.min.js │ └── select2.js ├── index.php └── modules │ ├── addsubject.js │ ├── administratives.js │ ├── group.js │ ├── index.php │ ├── students.js │ ├── teachers.js │ ├── user.js │ ├── userUpdate.js │ ├── userUpdatePass.js │ └── users.js ├── modules ├── administratives │ ├── delete.php │ ├── form_add.php │ ├── form_consult.php │ ├── form_default.php │ ├── form_delete.php │ ├── form_update.php │ ├── index.php │ ├── insert.php │ ├── load_data.php │ └── update.php ├── conexion.php ├── cookie.php ├── courses │ ├── course.php │ └── index.php ├── groups │ ├── delete.php │ ├── form_add.php │ ├── form_consult.php │ ├── form_default.php │ ├── form_delete.php │ ├── form_update.php │ ├── index.php │ ├── insert.php │ ├── load_data.php │ └── update.php ├── index.php ├── login │ ├── index.php │ └── logger.php ├── logout.php ├── notif_info.php ├── notif_info_close.php ├── notif_info_msgbox.php ├── notif_info_unset.php ├── sections │ ├── index.php │ ├── options-disabled.php │ ├── options.php │ ├── role-access-admin-student.php │ ├── role-access-admin.php │ ├── role-access-student.php │ ├── section-admin.php │ ├── section-info-title.php │ ├── section-student.php │ └── security.php ├── security.php ├── students │ ├── delete.php │ ├── form_add.php │ ├── form_consult.php │ ├── form_default.php │ ├── form_delete.php │ ├── form_update.php │ ├── index.php │ ├── insert.php │ ├── load_data.php │ └── update.php ├── subjects │ ├── delete.php │ ├── form_add.php │ ├── form_consult.php │ ├── form_default.php │ ├── form_delete.php │ ├── form_update.php │ ├── index.php │ ├── insert.php │ ├── load_data.php │ ├── unset.php │ └── update.php ├── teachers │ ├── delete.php │ ├── form_add.php │ ├── form_consult.php │ ├── form_default.php │ ├── form_delete.php │ ├── form_update.php │ ├── index.php │ ├── insert.php │ ├── load_data.php │ └── update.php └── users │ ├── form_default.php │ ├── form_update.php │ ├── index.php │ ├── load_data.php │ ├── update.php │ └── upload.php └── user ├── form_default.php ├── form_update.php ├── form_update_pass.php ├── index.php ├── load_data.php ├── update.php ├── update_email.php ├── update_pass.php └── upload.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sistema Cursos 2 | -------------------------------------------------------------------------------- /css/croppie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/croppie.css -------------------------------------------------------------------------------- /css/fonts/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/fonts/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /css/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /css/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /css/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /css/fonts/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carmonabernaldiego/sistema-cursos/HEAD/css/fonts/codepoints -------------------------------------------------------------------------------- /css/fonts/index.php: -------------------------------------------------------------------------------- 1 |