├── .htaccess ├── 404.php ├── README.md ├── account.php ├── account_action.php ├── add_result.php ├── add_result_action.php ├── add_student.php ├── api.php ├── attend.php ├── attend_action.php ├── barcode.php ├── batch_action.php ├── batch_list.php ├── chat.php ├── config ├── config.php ├── connect.php ├── db.php └── dbclass.php ├── dashboard_action.php ├── edit_id_card.php ├── exam.php ├── exam_action.php ├── exam_category_action.php ├── exam_list.php ├── exam_panel.php ├── exam_panel_action.php ├── export.php ├── id_card.php ├── id_card_action.php ├── index.php ├── install_action.php ├── install_system.php ├── layout ├── bubble.php ├── footer.php ├── header.php ├── header_lib.php ├── header_script.php ├── js │ ├── bubble.js │ └── nav_bar_script.js ├── layout.php ├── layout_style.php ├── loader.php ├── menu_button.php ├── modal_lib.php ├── nev_bar.php ├── page │ └── nav_bar_dropdown.php ├── side_bar.php └── site_script.js ├── login.php ├── login_action.php ├── logout.php ├── nav_bar_action.php ├── notice_action.php ├── notice_list.php ├── page ├── account │ ├── expence.php │ ├── income.php │ └── js │ │ ├── expence.js │ │ └── income.js ├── api │ └── api.php ├── attend │ ├── attend.php │ ├── extra.php │ └── js │ │ └── attend.js ├── batch │ ├── batch_list.php │ └── batch_script.js ├── chat │ ├── chat.php │ └── css │ │ └── style.css ├── editor │ ├── css │ │ └── sms_editor.css │ ├── js │ │ └── sms_editor.js │ └── sms_editor.php ├── exam │ ├── add_exam.php │ ├── exam_list.php │ ├── exam_result.php │ ├── js │ │ └── exam.js │ └── public_result.php ├── exam_page │ ├── exam_category │ │ ├── exam_category.php │ │ └── js │ │ │ └── script.js │ └── exam_panel │ │ ├── exam_panel.php │ │ └── js │ │ ├── add_result_script.js │ │ ├── exam_control.js │ │ └── exam_panel.js ├── export │ ├── excel.php │ └── style │ │ └── excel_table.css ├── id_card │ └── id_card_editor │ │ ├── css │ │ └── style.css │ │ ├── id_card_editor.php │ │ └── js │ │ └── script.js ├── index │ ├── dashboard.php │ ├── dashboard_info.php │ ├── expence_list.php │ ├── js │ │ ├── dashboard.js │ │ └── graph.js │ ├── message_send_chart.php │ ├── site_activity.php │ ├── student_admit_graph.php │ └── style.css ├── install │ ├── install_system.php │ └── js │ │ └── install_system.js ├── login │ ├── js │ │ ├── ajax.js │ │ └── script.js │ ├── login.php │ └── style │ │ └── style.css ├── notice │ ├── add_notice.php │ ├── js │ │ └── notice.js │ ├── notice_list.php │ ├── notice_script │ │ ├── notice.js │ │ └── notice_action.php │ └── send_notice.php ├── payment │ ├── left_payment_option.php │ ├── payment.php │ └── right_payment_option.php ├── print │ └── id_print.php ├── print_page │ └── print_page.php ├── program │ ├── add_program.php │ ├── program_list.php │ └── program_script.js ├── report │ ├── attend_report.php │ ├── css │ │ └── payment_report.css │ ├── expence_report.php │ ├── income_report.php │ ├── js │ │ ├── attend_report.js │ │ ├── expence_report.js │ │ ├── income_report.js │ │ ├── payment_report.js │ │ └── profit_report.js │ ├── payment_report.php │ └── profit_report.php ├── result │ ├── add_result.js │ ├── add_result.php │ ├── js │ │ └── result.js │ ├── public_result.php │ ├── result.css │ ├── result.js │ └── result_list.php ├── setting │ ├── js │ │ └── setting.js │ └── setting.php ├── sms │ ├── js │ │ └── sms_script.js │ ├── pending_sms_list.php │ ├── sms_dashboard.php │ └── sms_google_graph_api.php ├── student │ ├── aaa.js │ ├── add_student.php │ ├── add_student │ │ └── add_student.php │ ├── index.php │ ├── js_script │ │ └── student_action.js │ ├── profile.css │ ├── profile.js │ ├── student_list.js │ ├── student_list.php │ ├── student_list │ │ ├── css │ │ │ └── style.css │ │ ├── js │ │ │ ├── payment_script.js │ │ │ └── script.js │ │ └── student_list.php │ ├── student_list1.php │ ├── student_profile │ │ ├── css │ │ │ ├── payment.css │ │ │ └── profile.css │ │ ├── js │ │ │ ├── info.js │ │ │ ├── payment.js │ │ │ ├── profile1.js │ │ │ ├── profile_data.js │ │ │ └── program.js │ │ ├── profile.php │ │ └── profile_lib.php │ ├── student_profile_panel.php │ └── text_editor.css ├── subject │ ├── add_subject.php │ ├── subject_list.php │ └── subject_script.js ├── template │ └── data_table.php ├── theme │ ├── add_theme.php │ ├── theme.php │ └── theme_list.php └── user │ ├── add_user.php │ ├── edit_profile.php │ ├── user_add_script.js │ ├── user_info.js │ ├── user_info.php │ ├── user_list.php │ ├── user_list │ ├── css │ │ └── style.css │ ├── js │ │ └── user_list.js │ ├── side_bar.php │ └── user_list.php │ ├── user_list1.php │ ├── user_profile.php │ └── user_profile │ ├── css │ └── style.css │ ├── js │ ├── user_profile.js │ └── user_top_bar_script.php │ ├── profile_side_bar.php │ ├── user_profile.php │ └── user_profile_ui.php ├── page_action ├── account │ ├── account.php │ ├── expence.php │ └── income.php ├── attend │ ├── attend_action.php │ └── attend_report.php ├── batch_page_action.php ├── dashboard │ └── dashboard_action.php ├── exam │ ├── exam_action.php │ ├── exam_category │ │ └── exam_category_action.php │ └── exam_panel │ │ └── exam_panel.php ├── exam_panel │ ├── css │ │ └── style.css │ ├── exam_category_panel │ │ ├── admit_card.php │ │ ├── category_dashboard.php │ │ ├── exam_list.php │ │ └── include_file.php │ ├── exam_control_panel │ │ ├── add_result.php │ │ ├── exam_dashboard.php │ │ ├── include_file.php │ │ └── overview.php │ └── exam_panel.php ├── id_card │ └── edit_id_card │ │ └── edit_id_card_action.php ├── install │ └── install.php ├── nav_bar │ ├── chat_system.php │ ├── nav_bar.php │ ├── sql_editor.php │ └── theme.php ├── notice │ └── notice.php ├── program_page_action.php ├── report │ ├── attend_report.php │ ├── expense_report.php │ ├── income_report.php │ ├── payment_report.php │ ├── profit_report.php │ └── report.php ├── result │ ├── add_result.php │ └── result_action.php ├── setting │ └── setting.php ├── sms │ └── sms_action.php ├── student_list │ ├── basic_list.php │ ├── payment_option.php │ ├── payment_overview.php │ ├── program_overview.php │ ├── student_list.php │ ├── student_list_content.php │ └── student_payment_history.php ├── student_profile │ ├── info.php │ ├── payment.php │ ├── profile.php │ └── program.php ├── subject_page_action.php └── user │ ├── user.php │ ├── user_list.php │ ├── user_profile.php │ └── user_profile_body.php ├── payment.php ├── pending_sms_list.php ├── practice.php ├── print_page.php ├── profit_report.php ├── program_action.php ├── program_list.php ├── report.php ├── report_action.php ├── result.php ├── result_action.php ├── result_list.php ├── screen_shot ├── compare_user_activity_data.PNG ├── dashboard.PNG ├── id_card.PNG ├── install_screen.png ├── install_success.png ├── live_user_activity.PNG ├── login_screen.png ├── monthly_attendence_report.PNG ├── payment_dashboard.PNG ├── payment_money_recept.PNG ├── payment_status_list.PNG ├── print_id_card.PNG ├── sms_dashboard.PNG ├── student_profile.PNG ├── theme_change.PNG ├── update_setting.png └── user_profile.PNG ├── script ├── account │ └── account.php ├── api │ └── api.php ├── attendence │ └── attendence.php ├── batch │ └── batch.php ├── chat │ └── chat.php ├── contest │ └── contest.php ├── exam │ ├── exam.js │ ├── exam.php │ └── exam_category.php ├── graph │ └── graph.php ├── id_card │ ├── id.php │ ├── id_card.js │ └── id_card.php ├── install │ └── install.php ├── notice │ └── notice.php ├── payment │ ├── payment.js │ ├── payment.php │ └── set_payment.php ├── program │ ├── program.php │ └── program_form.php ├── report │ └── report.php ├── result │ └── result.php ├── setting │ └── setting.php ├── site_activity │ └── site_activity.php ├── site_content │ ├── calender.php │ ├── form.php │ ├── site_config.php │ └── site_content.php ├── sms │ └── sms.php ├── student │ ├── add_ajax.js │ ├── student.php │ └── student_edit.php ├── subject │ └── subject.php ├── template_class │ └── template_class.php ├── theme │ ├── index.php │ └── theme.php └── user │ └── user.php ├── setting.php ├── setting_action.php ├── sms_action.php ├── sms_dashboard.php ├── sql ├── install_sql.sql └── sql.sql ├── student.php ├── student ├── app │ ├── app.js │ └── lib │ │ ├── angular-route.js │ │ └── angular.min.js ├── content │ ├── css │ │ └── style.css │ └── mdb │ │ ├── License.pdf │ │ ├── README.txt │ │ ├── css │ │ ├── addons │ │ │ ├── datatables-select.css │ │ │ ├── datatables-select.min.css │ │ │ ├── datatables.css │ │ │ └── datatables.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── mdb.css │ │ ├── mdb.lite.css │ │ ├── mdb.lite.min.css │ │ ├── mdb.min.css │ │ ├── modules │ │ │ ├── animations-extended.css │ │ │ └── animations-extended.min.css │ │ ├── style.css │ │ └── style.min.css │ │ ├── font │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ │ ├── img │ │ ├── lightbox │ │ │ ├── default-skin.png │ │ │ ├── default-skin.svg │ │ │ └── preloader.gif │ │ ├── overlays │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ └── 09.png │ │ └── svg │ │ │ ├── arrow_left.svg │ │ │ └── arrow_right.svg │ │ ├── index.html │ │ ├── js │ │ ├── addons │ │ │ ├── datatables-select.js │ │ │ ├── datatables-select.min.js │ │ │ ├── datatables.js │ │ │ └── datatables.min.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.3.1.min.js │ │ ├── mdb.js │ │ ├── mdb.min.js │ │ ├── modules │ │ │ ├── chart.js │ │ │ ├── default-file-input.js │ │ │ ├── enhanced-modals.js │ │ │ ├── forms-free.js │ │ │ ├── jquery.easing.js │ │ │ ├── scrolling-navbar.js │ │ │ ├── velocity.js │ │ │ ├── velocity.min.js │ │ │ ├── waves.js │ │ │ └── wow.js │ │ └── popper.min.js │ │ └── scss │ │ ├── _custom-styles.scss │ │ ├── _custom-variables.scss │ │ ├── addons │ │ ├── _datatables-select.scss │ │ └── _datatables.scss │ │ ├── core │ │ ├── _colors.scss │ │ ├── _global.scss │ │ ├── _helpers.scss │ │ ├── _masks.scss │ │ ├── _mixins.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ ├── _waves.scss │ │ └── bootstrap │ │ │ ├── _functions.scss │ │ │ └── _variables.scss │ │ ├── free │ │ ├── _animations-basic.scss │ │ ├── _badges.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _carousels.scss │ │ ├── _depreciated.scss │ │ ├── _dropdowns.scss │ │ ├── _footers.scss │ │ ├── _forms.scss │ │ ├── _input-group.scss │ │ ├── _list-group.scss │ │ ├── _loader.scss │ │ ├── _modals.scss │ │ ├── _msc.scss │ │ ├── _navbars.scss │ │ ├── _pagination.scss │ │ ├── _steppers.scss │ │ ├── _switch.scss │ │ ├── _tables.scss │ │ └── modules │ │ │ └── animations-extended │ │ │ ├── _module.scss │ │ │ └── animations-extended.scss │ │ ├── mdb.lite.scss │ │ └── mdb.scss ├── controller │ └── controller.js ├── data │ └── dashboard_menu_list.html ├── example │ └── login │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── index.html │ │ ├── modules │ │ ├── authentication │ │ │ ├── controllers.js │ │ │ ├── services.js │ │ │ └── views │ │ │ │ └── login.html │ │ └── home │ │ │ ├── controllers.js │ │ │ └── views │ │ │ └── home.html │ │ ├── scripts │ │ └── app.js │ │ ├── src │ │ ├── app.js │ │ ├── directives │ │ │ └── form-helpers.js │ │ ├── error │ │ │ ├── error.js │ │ │ └── error.tpl.html │ │ ├── grandfather.js │ │ ├── home │ │ │ ├── home.js │ │ │ └── home.tpl.html │ │ ├── login-service.js │ │ ├── mockhttp.js │ │ ├── pages │ │ │ ├── admin.tpl.html │ │ │ ├── pages.js │ │ │ └── user.tpl.html │ │ ├── register │ │ │ ├── register.js │ │ │ ├── register.less │ │ │ └── register.tpl.html │ │ └── routing-config.js │ │ └── test │ │ ├── karma.conf.js │ │ └── spec │ │ └── login-service.js ├── index.html ├── test.html └── views │ ├── 404.html │ ├── batch_info.html │ ├── dashboard.html │ ├── header.html │ ├── home.html │ ├── login.html │ ├── program_info.html │ ├── result.html │ ├── send_sms.html │ ├── side_bar.html │ └── student_info.html ├── student_action.php ├── student_add_ajax.php ├── student_list.php ├── student_list_action.php ├── student_profile.php ├── student_profile_action.php ├── style ├── css │ ├── id_card.css │ ├── nav_bar.css │ └── table.css ├── images │ ├── 140x140.gif │ ├── 170x170.gif │ ├── blog │ │ ├── 442256_20337880.jpg │ │ ├── 472381_10949156.jpg │ │ ├── 503993_62595320.jpg │ │ ├── 625998_12886207.jpg │ │ ├── 737034_24905666.jpg │ │ ├── 789080_16753532.jpg │ │ ├── 888272_30368604.jpg │ │ └── images.txt │ ├── faces │ │ ├── 1a.png │ │ ├── 1b.png │ │ ├── 2a.png │ │ ├── 2b.png │ │ ├── 3a.png │ │ ├── 3b.png │ │ ├── 4a.png │ │ ├── 4b.png │ │ ├── 5b.png │ │ ├── 6b.png │ │ ├── 7b.jpg │ │ └── images.txt │ ├── gallery │ │ ├── 319768_8498.jpg │ │ ├── 403944_5580.jpg │ │ ├── 43616_6206.jpg │ │ ├── 442256_20337880.jpg │ │ ├── 463600_31373324.jpg │ │ ├── 472381_10949156.jpg │ │ ├── 485382_81894547.jpg │ │ ├── 503993_62595320.jpg │ │ ├── 544337_83543416.jpg │ │ ├── 625998_12886207.jpg │ │ ├── 737034_24905666.jpg │ │ ├── 760375_32906821.jpg │ │ ├── 789080_16753532.jpg │ │ ├── 888272_30368604.jpg │ │ └── images.txt │ ├── less.png │ ├── loading-icons │ │ ├── images.txt │ │ ├── loading1.gif │ │ ├── loading10.gif │ │ ├── loading2.gif │ │ ├── loading3.gif │ │ ├── loading4.gif │ │ ├── loading5.gif │ │ ├── loading6.gif │ │ ├── loading7.gif │ │ ├── loading8.gif │ │ └── loading9.gif │ ├── media │ │ ├── 1.jpg │ │ ├── 3.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ ├── middleman.png │ ├── people │ │ ├── 1083978.jpg │ │ ├── 1139155.jpg │ │ ├── 1170492.jpg │ │ ├── 1192482.jpg │ │ ├── 1205972.jpg │ │ ├── 1208847.jpg │ │ ├── 1248972.jpg │ │ ├── 471397.jpg │ │ ├── 653195.jpg │ │ ├── 671385.jpg │ │ ├── 764343.jpg │ │ ├── 797762.jpg │ │ ├── 912129.jpg │ │ └── 923068.jpg │ ├── preview │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 8.png │ │ └── 9.png │ └── tumblr_mopqkkwK2M1st5lhmo1_1280.jpg ├── lib │ ├── .DS_Store │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── custom │ │ └── custom.js │ ├── fancy-zoom │ │ ├── css │ │ │ └── fancyzoom.css │ │ ├── img │ │ │ └── closebox.png │ │ ├── index.html │ │ └── src │ │ │ ├── fancyzoom.coffee │ │ │ └── fancyzoom.js │ ├── flot │ │ ├── API.txt │ │ ├── FAQ.txt │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.txt │ │ ├── PLUGINS.txt │ │ ├── README.txt │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── annotating.html │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-left.gif │ │ │ ├── arrow-right.gif │ │ │ ├── arrow-up.gif │ │ │ ├── basic.html │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ ├── data-eu-gdp-growth.json │ │ │ ├── data-japan-gdp-growth.json │ │ │ ├── data-usa-gdp-growth.json │ │ │ ├── graph-types.html │ │ │ ├── hs-2004-27-a-large_web.jpg │ │ │ ├── image.html │ │ │ ├── index.html │ │ │ ├── interacting-axes.html │ │ │ ├── interacting.html │ │ │ ├── layout.css │ │ │ ├── multiple-axes.html │ │ │ ├── navigate.html │ │ │ ├── percentiles.html │ │ │ ├── pie.html │ │ │ ├── realtime.html │ │ │ ├── resize.html │ │ │ ├── selection.html │ │ │ ├── setting-options.html │ │ │ ├── stacking.html │ │ │ ├── symbols.html │ │ │ ├── thresholding.html │ │ │ ├── time.html │ │ │ ├── tracking.html │ │ │ ├── turning-series.html │ │ │ ├── visitors.html │ │ │ └── zooming.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.js │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fullcalendar-1.6.4 │ │ ├── .DS_Store │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ ├── jquery-1.11.1.min.js │ ├── jquery.imagesloaded.min.js │ ├── jquery.isotope.min.js │ ├── jquery.masonry.min.js │ └── jquery.peity.min.js └── stylesheets │ ├── custom.css │ ├── elements.css │ ├── isotope.css │ ├── money_recept.css │ ├── premium.css │ ├── root │ ├── root1.css │ ├── root2.css │ └── root3.css │ └── theme.css ├── subject_action.php ├── subject_list.php ├── test.php ├── theme.php ├── theme_action.php ├── tool ├── School │ └── School id card │ │ ├── 46473904_1257594644380255_9062710186623369216_n.jpg │ │ ├── images.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── logo_image.png │ │ ├── qr.png │ │ ├── signature.webp │ │ ├── stdudent.jpg │ │ └── style.css ├── chart_api │ └── canvas_api.js ├── color_picker │ ├── jscolor-example.html │ └── jscolor.js ├── date_picker │ ├── css │ │ ├── bootstrap-datepicker.css │ │ ├── bootstrap-datepicker.css.map │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datepicker.min.css.map │ │ ├── bootstrap-datepicker.standalone.css │ │ ├── bootstrap-datepicker.standalone.css.map │ │ ├── bootstrap-datepicker.standalone.min.css │ │ ├── bootstrap-datepicker.standalone.min.css.map │ │ ├── bootstrap-datepicker3.css │ │ ├── bootstrap-datepicker3.css.map │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-datepicker3.min.css.map │ │ ├── bootstrap-datepicker3.standalone.css │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ ├── bootstrap-datepicker3.standalone.min.css │ │ └── bootstrap-datepicker3.standalone.min.css.map │ ├── js │ │ ├── bootstrap-datepicker.js │ │ └── bootstrap-datepicker.min.js │ └── locales │ │ ├── bootstrap-datepicker.ar.min.js │ │ ├── bootstrap-datepicker.az.min.js │ │ ├── bootstrap-datepicker.bg.min.js │ │ ├── bootstrap-datepicker.bs.min.js │ │ ├── bootstrap-datepicker.ca.min.js │ │ ├── bootstrap-datepicker.cs.min.js │ │ ├── bootstrap-datepicker.cy.min.js │ │ ├── bootstrap-datepicker.da.min.js │ │ ├── bootstrap-datepicker.de.min.js │ │ ├── bootstrap-datepicker.el.min.js │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ ├── bootstrap-datepicker.eo.min.js │ │ ├── bootstrap-datepicker.es.min.js │ │ ├── bootstrap-datepicker.et.min.js │ │ ├── bootstrap-datepicker.eu.min.js │ │ ├── bootstrap-datepicker.fa.min.js │ │ ├── bootstrap-datepicker.fi.min.js │ │ ├── bootstrap-datepicker.fo.min.js │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ ├── bootstrap-datepicker.fr.min.js │ │ ├── bootstrap-datepicker.gl.min.js │ │ ├── bootstrap-datepicker.he.min.js │ │ ├── bootstrap-datepicker.hr.min.js │ │ ├── bootstrap-datepicker.hu.min.js │ │ ├── bootstrap-datepicker.hy.min.js │ │ ├── bootstrap-datepicker.id.min.js │ │ ├── bootstrap-datepicker.is.min.js │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ ├── bootstrap-datepicker.it.min.js │ │ ├── bootstrap-datepicker.ja.min.js │ │ ├── bootstrap-datepicker.ka.min.js │ │ ├── bootstrap-datepicker.kh.min.js │ │ ├── bootstrap-datepicker.kk.min.js │ │ ├── bootstrap-datepicker.ko.min.js │ │ ├── bootstrap-datepicker.kr.min.js │ │ ├── bootstrap-datepicker.lt.min.js │ │ ├── bootstrap-datepicker.lv.min.js │ │ ├── bootstrap-datepicker.me.min.js │ │ ├── bootstrap-datepicker.mk.min.js │ │ ├── bootstrap-datepicker.mn.min.js │ │ ├── bootstrap-datepicker.ms.min.js │ │ ├── bootstrap-datepicker.nb.min.js │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ ├── bootstrap-datepicker.nl.min.js │ │ ├── bootstrap-datepicker.no.min.js │ │ ├── bootstrap-datepicker.pl.min.js │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ ├── bootstrap-datepicker.pt.min.js │ │ ├── bootstrap-datepicker.ro.min.js │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ ├── bootstrap-datepicker.rs.min.js │ │ ├── bootstrap-datepicker.ru.min.js │ │ ├── bootstrap-datepicker.sk.min.js │ │ ├── bootstrap-datepicker.sl.min.js │ │ ├── bootstrap-datepicker.sq.min.js │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ ├── bootstrap-datepicker.sr.min.js │ │ ├── bootstrap-datepicker.sv.min.js │ │ ├── bootstrap-datepicker.sw.min.js │ │ ├── bootstrap-datepicker.th.min.js │ │ ├── bootstrap-datepicker.tr.min.js │ │ ├── bootstrap-datepicker.uk.min.js │ │ ├── bootstrap-datepicker.vi.min.js │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ └── bootstrap-datepicker.zh-TW.min.js ├── datepickk-master │ └── datepickk-master │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── datepickk.css │ │ ├── datepickk.js │ │ ├── datepickk.min.css │ │ ├── datepickk.min.js │ │ ├── doc.css │ │ └── doc.js │ │ ├── docs │ │ ├── _button.less │ │ ├── _colors.less │ │ ├── _grid.less │ │ ├── _variables.less │ │ ├── demo.js │ │ ├── doc.less │ │ └── doc.min.css │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── css │ │ │ └── datepickk.less │ │ └── js │ │ │ └── datepickk.js │ │ └── webpack.config.js ├── pdf │ ├── FAQ.htm │ ├── changelog.htm │ ├── doc │ │ ├── __construct.htm │ │ ├── acceptpagebreak.htm │ │ ├── addfont.htm │ │ ├── addlink.htm │ │ ├── addpage.htm │ │ ├── aliasnbpages.htm │ │ ├── cell.htm │ │ ├── close.htm │ │ ├── error.htm │ │ ├── footer.htm │ │ ├── getpageheight.htm │ │ ├── getpagewidth.htm │ │ ├── getstringwidth.htm │ │ ├── getx.htm │ │ ├── gety.htm │ │ ├── header.htm │ │ ├── image.htm │ │ ├── index.htm │ │ ├── line.htm │ │ ├── link.htm │ │ ├── ln.htm │ │ ├── multicell.htm │ │ ├── output.htm │ │ ├── pageno.htm │ │ ├── rect.htm │ │ ├── setauthor.htm │ │ ├── setautopagebreak.htm │ │ ├── setcompression.htm │ │ ├── setcreator.htm │ │ ├── setdisplaymode.htm │ │ ├── setdrawcolor.htm │ │ ├── setfillcolor.htm │ │ ├── setfont.htm │ │ ├── setfontsize.htm │ │ ├── setkeywords.htm │ │ ├── setleftmargin.htm │ │ ├── setlinewidth.htm │ │ ├── setlink.htm │ │ ├── setmargins.htm │ │ ├── setrightmargin.htm │ │ ├── setsubject.htm │ │ ├── settextcolor.htm │ │ ├── settitle.htm │ │ ├── settopmargin.htm │ │ ├── setx.htm │ │ ├── setxy.htm │ │ ├── sety.htm │ │ ├── text.htm │ │ └── write.htm │ ├── font │ │ ├── courier.php │ │ ├── courierb.php │ │ ├── courierbi.php │ │ ├── courieri.php │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ └── zapfdingbats.php │ ├── fpdf.css │ ├── fpdf.php │ ├── install.txt │ ├── license.txt │ ├── makefont │ │ ├── cp1250.map │ │ ├── cp1251.map │ │ ├── cp1252.map │ │ ├── cp1253.map │ │ ├── cp1254.map │ │ ├── cp1255.map │ │ ├── cp1257.map │ │ ├── cp1258.map │ │ ├── cp874.map │ │ ├── iso-8859-1.map │ │ ├── iso-8859-11.map │ │ ├── iso-8859-15.map │ │ ├── iso-8859-16.map │ │ ├── iso-8859-2.map │ │ ├── iso-8859-4.map │ │ ├── iso-8859-5.map │ │ ├── iso-8859-7.map │ │ ├── iso-8859-9.map │ │ ├── koi8-r.map │ │ ├── koi8-u.map │ │ ├── makefont.php │ │ └── ttfparser.php │ └── tutorial │ │ ├── 20k_c1.txt │ │ ├── 20k_c2.txt │ │ ├── calligra.php │ │ ├── calligra.ttf │ │ ├── calligra.z │ │ ├── countries.txt │ │ ├── index.htm │ │ ├── logo.png │ │ ├── makefont.php │ │ ├── tuto1.htm │ │ ├── tuto1.php │ │ ├── tuto2.htm │ │ ├── tuto2.php │ │ ├── tuto3.htm │ │ ├── tuto3.php │ │ ├── tuto4.htm │ │ ├── tuto4.php │ │ ├── tuto5.htm │ │ ├── tuto5.php │ │ ├── tuto6.htm │ │ ├── tuto6.php │ │ ├── tuto7.htm │ │ └── tuto7.php └── vendor │ └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ └── picqer │ └── php-barcode-generator │ ├── LICENSE.md │ ├── Readme.md │ ├── _gitignore.txt │ ├── _travis.yml │ ├── composer.json │ ├── generate-verified-files.php │ ├── phpunit.xml │ ├── src │ ├── BarcodeGenerator.php │ ├── BarcodeGeneratorHTML.php │ ├── BarcodeGeneratorJPG.php │ ├── BarcodeGeneratorPNG.php │ ├── BarcodeGeneratorSVG.php │ └── Exceptions │ │ ├── BarcodeException.php │ │ ├── InvalidCharacterException.php │ │ ├── InvalidCheckDigitException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidLengthException.php │ │ └── UnknownTypeException.php │ └── tests │ ├── BarcodeTest.php │ └── verified-files │ ├── 0049000004632-ean13.svg │ ├── 081231723897-code128.html │ └── 081231723897-ean13.svg ├── upload ├── custom_content │ ├── techserm_full_logo.jpg │ └── techserm_small_logo.png ├── index.php ├── site_content │ ├── bg.jpg │ ├── loader1.gif │ ├── loader2.gif │ ├── loader3.gif │ ├── loader4.gif │ ├── map.png │ ├── processing1.gif │ ├── saving1.gif │ └── user_background.jpg ├── student_photo │ └── avatar.png └── user_photo │ └── avatar.png ├── user_action.php ├── user_info.php ├── user_list.php └── watermark.php /.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/404.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/account.php -------------------------------------------------------------------------------- /account_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/account_action.php -------------------------------------------------------------------------------- /add_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/add_result.php -------------------------------------------------------------------------------- /add_result_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/add_result_action.php -------------------------------------------------------------------------------- /add_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/add_student.php -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/api.php -------------------------------------------------------------------------------- /attend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/attend.php -------------------------------------------------------------------------------- /attend_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/attend_action.php -------------------------------------------------------------------------------- /barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/barcode.php -------------------------------------------------------------------------------- /batch_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/batch_action.php -------------------------------------------------------------------------------- /batch_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/batch_list.php -------------------------------------------------------------------------------- /chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/chat.php -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/config/config.php -------------------------------------------------------------------------------- /config/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/config/connect.php -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/dbclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/config/dbclass.php -------------------------------------------------------------------------------- /dashboard_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/dashboard_action.php -------------------------------------------------------------------------------- /edit_id_card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/edit_id_card.php -------------------------------------------------------------------------------- /exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam.php -------------------------------------------------------------------------------- /exam_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam_action.php -------------------------------------------------------------------------------- /exam_category_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam_category_action.php -------------------------------------------------------------------------------- /exam_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam_list.php -------------------------------------------------------------------------------- /exam_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam_panel.php -------------------------------------------------------------------------------- /exam_panel_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/exam_panel_action.php -------------------------------------------------------------------------------- /export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/export.php -------------------------------------------------------------------------------- /id_card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/id_card.php -------------------------------------------------------------------------------- /id_card_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/id_card_action.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /install_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/install_action.php -------------------------------------------------------------------------------- /install_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/install_system.php -------------------------------------------------------------------------------- /layout/bubble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/bubble.php -------------------------------------------------------------------------------- /layout/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/footer.php -------------------------------------------------------------------------------- /layout/header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/header_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/header_lib.php -------------------------------------------------------------------------------- /layout/header_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/header_script.php -------------------------------------------------------------------------------- /layout/js/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/js/bubble.js -------------------------------------------------------------------------------- /layout/js/nav_bar_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/js/nav_bar_script.js -------------------------------------------------------------------------------- /layout/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/layout.php -------------------------------------------------------------------------------- /layout/layout_style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/layout_style.php -------------------------------------------------------------------------------- /layout/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/loader.php -------------------------------------------------------------------------------- /layout/menu_button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/menu_button.php -------------------------------------------------------------------------------- /layout/modal_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/modal_lib.php -------------------------------------------------------------------------------- /layout/nev_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/nev_bar.php -------------------------------------------------------------------------------- /layout/page/nav_bar_dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/page/nav_bar_dropdown.php -------------------------------------------------------------------------------- /layout/side_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/side_bar.php -------------------------------------------------------------------------------- /layout/site_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/layout/site_script.js -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/login.php -------------------------------------------------------------------------------- /login_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/login_action.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/logout.php -------------------------------------------------------------------------------- /nav_bar_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/nav_bar_action.php -------------------------------------------------------------------------------- /notice_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/notice_action.php -------------------------------------------------------------------------------- /notice_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/notice_list.php -------------------------------------------------------------------------------- /page/account/expence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/account/expence.php -------------------------------------------------------------------------------- /page/account/income.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/account/income.php -------------------------------------------------------------------------------- /page/account/js/expence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/account/js/expence.js -------------------------------------------------------------------------------- /page/account/js/income.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/account/js/income.js -------------------------------------------------------------------------------- /page/api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/api/api.php -------------------------------------------------------------------------------- /page/attend/attend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/attend/attend.php -------------------------------------------------------------------------------- /page/attend/extra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/attend/extra.php -------------------------------------------------------------------------------- /page/attend/js/attend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/attend/js/attend.js -------------------------------------------------------------------------------- /page/batch/batch_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/batch/batch_list.php -------------------------------------------------------------------------------- /page/batch/batch_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/batch/batch_script.js -------------------------------------------------------------------------------- /page/chat/chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/chat/chat.php -------------------------------------------------------------------------------- /page/chat/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/chat/css/style.css -------------------------------------------------------------------------------- /page/editor/css/sms_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/editor/css/sms_editor.css -------------------------------------------------------------------------------- /page/editor/js/sms_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/editor/js/sms_editor.js -------------------------------------------------------------------------------- /page/editor/sms_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/editor/sms_editor.php -------------------------------------------------------------------------------- /page/exam/add_exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam/add_exam.php -------------------------------------------------------------------------------- /page/exam/exam_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam/exam_list.php -------------------------------------------------------------------------------- /page/exam/exam_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam/exam_result.php -------------------------------------------------------------------------------- /page/exam/js/exam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam/js/exam.js -------------------------------------------------------------------------------- /page/exam/public_result.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/exam_page/exam_category/exam_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam_page/exam_category/exam_category.php -------------------------------------------------------------------------------- /page/exam_page/exam_category/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam_page/exam_category/js/script.js -------------------------------------------------------------------------------- /page/exam_page/exam_panel/exam_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam_page/exam_panel/exam_panel.php -------------------------------------------------------------------------------- /page/exam_page/exam_panel/js/add_result_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam_page/exam_panel/js/add_result_script.js -------------------------------------------------------------------------------- /page/exam_page/exam_panel/js/exam_control.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/exam_page/exam_panel/js/exam_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/exam_page/exam_panel/js/exam_panel.js -------------------------------------------------------------------------------- /page/export/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/export/excel.php -------------------------------------------------------------------------------- /page/export/style/excel_table.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/id_card/id_card_editor/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/id_card/id_card_editor/id_card_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/id_card/id_card_editor/id_card_editor.php -------------------------------------------------------------------------------- /page/id_card/id_card_editor/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/id_card/id_card_editor/js/script.js -------------------------------------------------------------------------------- /page/index/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/dashboard.php -------------------------------------------------------------------------------- /page/index/dashboard_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/dashboard_info.php -------------------------------------------------------------------------------- /page/index/expence_list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/index/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/js/dashboard.js -------------------------------------------------------------------------------- /page/index/js/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/js/graph.js -------------------------------------------------------------------------------- /page/index/message_send_chart.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /page/index/site_activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/site_activity.php -------------------------------------------------------------------------------- /page/index/student_admit_graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/student_admit_graph.php -------------------------------------------------------------------------------- /page/index/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/index/style.css -------------------------------------------------------------------------------- /page/install/install_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/install/install_system.php -------------------------------------------------------------------------------- /page/install/js/install_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/install/js/install_system.js -------------------------------------------------------------------------------- /page/login/js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/login/js/ajax.js -------------------------------------------------------------------------------- /page/login/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/login/js/script.js -------------------------------------------------------------------------------- /page/login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/login/login.php -------------------------------------------------------------------------------- /page/login/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/login/style/style.css -------------------------------------------------------------------------------- /page/notice/add_notice.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/notice/js/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/notice/js/notice.js -------------------------------------------------------------------------------- /page/notice/notice_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/notice/notice_list.php -------------------------------------------------------------------------------- /page/notice/notice_script/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/notice/notice_script/notice.js -------------------------------------------------------------------------------- /page/notice/notice_script/notice_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/notice/notice_script/notice_action.php -------------------------------------------------------------------------------- /page/notice/send_notice.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/payment/left_payment_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/payment/left_payment_option.php -------------------------------------------------------------------------------- /page/payment/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/payment/payment.php -------------------------------------------------------------------------------- /page/payment/right_payment_option.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/print/id_print.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/print_page/print_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/print_page/print_page.php -------------------------------------------------------------------------------- /page/program/add_program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/program/add_program.php -------------------------------------------------------------------------------- /page/program/program_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/program/program_list.php -------------------------------------------------------------------------------- /page/program/program_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/program/program_script.js -------------------------------------------------------------------------------- /page/report/attend_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/attend_report.php -------------------------------------------------------------------------------- /page/report/css/payment_report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/css/payment_report.css -------------------------------------------------------------------------------- /page/report/expence_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/expence_report.php -------------------------------------------------------------------------------- /page/report/income_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/income_report.php -------------------------------------------------------------------------------- /page/report/js/attend_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/js/attend_report.js -------------------------------------------------------------------------------- /page/report/js/expence_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/js/expence_report.js -------------------------------------------------------------------------------- /page/report/js/income_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/js/income_report.js -------------------------------------------------------------------------------- /page/report/js/payment_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/js/payment_report.js -------------------------------------------------------------------------------- /page/report/js/profit_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/js/profit_report.js -------------------------------------------------------------------------------- /page/report/payment_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/payment_report.php -------------------------------------------------------------------------------- /page/report/profit_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/report/profit_report.php -------------------------------------------------------------------------------- /page/result/add_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/add_result.js -------------------------------------------------------------------------------- /page/result/add_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/add_result.php -------------------------------------------------------------------------------- /page/result/js/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/js/result.js -------------------------------------------------------------------------------- /page/result/public_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/public_result.php -------------------------------------------------------------------------------- /page/result/result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/result.css -------------------------------------------------------------------------------- /page/result/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/result/result.js -------------------------------------------------------------------------------- /page/result/result_list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/setting/js/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/setting/js/setting.js -------------------------------------------------------------------------------- /page/setting/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/setting/setting.php -------------------------------------------------------------------------------- /page/sms/js/sms_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/sms/js/sms_script.js -------------------------------------------------------------------------------- /page/sms/pending_sms_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/sms/pending_sms_list.php -------------------------------------------------------------------------------- /page/sms/sms_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/sms/sms_dashboard.php -------------------------------------------------------------------------------- /page/sms/sms_google_graph_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/sms/sms_google_graph_api.php -------------------------------------------------------------------------------- /page/student/aaa.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/student/add_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/add_student.php -------------------------------------------------------------------------------- /page/student/add_student/add_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/add_student/add_student.php -------------------------------------------------------------------------------- /page/student/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/index.php -------------------------------------------------------------------------------- /page/student/js_script/student_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/js_script/student_action.js -------------------------------------------------------------------------------- /page/student/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/profile.css -------------------------------------------------------------------------------- /page/student/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/profile.js -------------------------------------------------------------------------------- /page/student/student_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list.js -------------------------------------------------------------------------------- /page/student/student_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list.php -------------------------------------------------------------------------------- /page/student/student_list/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list/css/style.css -------------------------------------------------------------------------------- /page/student/student_list/js/payment_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list/js/payment_script.js -------------------------------------------------------------------------------- /page/student/student_list/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list/js/script.js -------------------------------------------------------------------------------- /page/student/student_list/student_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list/student_list.php -------------------------------------------------------------------------------- /page/student/student_list1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_list1.php -------------------------------------------------------------------------------- /page/student/student_profile/css/payment.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/student/student_profile/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/css/profile.css -------------------------------------------------------------------------------- /page/student/student_profile/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/js/info.js -------------------------------------------------------------------------------- /page/student/student_profile/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/js/payment.js -------------------------------------------------------------------------------- /page/student/student_profile/js/profile1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/js/profile1.js -------------------------------------------------------------------------------- /page/student/student_profile/js/profile_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/js/profile_data.js -------------------------------------------------------------------------------- /page/student/student_profile/js/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/js/program.js -------------------------------------------------------------------------------- /page/student/student_profile/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/profile.php -------------------------------------------------------------------------------- /page/student/student_profile/profile_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile/profile_lib.php -------------------------------------------------------------------------------- /page/student/student_profile_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/student_profile_panel.php -------------------------------------------------------------------------------- /page/student/text_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/student/text_editor.css -------------------------------------------------------------------------------- /page/subject/add_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/subject/add_subject.php -------------------------------------------------------------------------------- /page/subject/subject_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/subject/subject_list.php -------------------------------------------------------------------------------- /page/subject/subject_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/subject/subject_script.js -------------------------------------------------------------------------------- /page/template/data_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/template/data_table.php -------------------------------------------------------------------------------- /page/theme/add_theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/theme/add_theme.php -------------------------------------------------------------------------------- /page/theme/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/theme/theme.php -------------------------------------------------------------------------------- /page/theme/theme_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/theme/theme_list.php -------------------------------------------------------------------------------- /page/user/add_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/add_user.php -------------------------------------------------------------------------------- /page/user/edit_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/edit_profile.php -------------------------------------------------------------------------------- /page/user/user_add_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_add_script.js -------------------------------------------------------------------------------- /page/user/user_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_info.js -------------------------------------------------------------------------------- /page/user/user_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_info.php -------------------------------------------------------------------------------- /page/user/user_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list.php -------------------------------------------------------------------------------- /page/user/user_list/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list/css/style.css -------------------------------------------------------------------------------- /page/user/user_list/js/user_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list/js/user_list.js -------------------------------------------------------------------------------- /page/user/user_list/side_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list/side_bar.php -------------------------------------------------------------------------------- /page/user/user_list/user_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list/user_list.php -------------------------------------------------------------------------------- /page/user/user_list1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_list1.php -------------------------------------------------------------------------------- /page/user/user_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile.php -------------------------------------------------------------------------------- /page/user/user_profile/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile/css/style.css -------------------------------------------------------------------------------- /page/user/user_profile/js/user_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile/js/user_profile.js -------------------------------------------------------------------------------- /page/user/user_profile/js/user_top_bar_script.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/user/user_profile/profile_side_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile/profile_side_bar.php -------------------------------------------------------------------------------- /page/user/user_profile/user_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile/user_profile.php -------------------------------------------------------------------------------- /page/user/user_profile/user_profile_ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page/user/user_profile/user_profile_ui.php -------------------------------------------------------------------------------- /page_action/account/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/account/account.php -------------------------------------------------------------------------------- /page_action/account/expence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/account/expence.php -------------------------------------------------------------------------------- /page_action/account/income.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/account/income.php -------------------------------------------------------------------------------- /page_action/attend/attend_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/attend/attend_action.php -------------------------------------------------------------------------------- /page_action/attend/attend_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/attend/attend_report.php -------------------------------------------------------------------------------- /page_action/batch_page_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/batch_page_action.php -------------------------------------------------------------------------------- /page_action/dashboard/dashboard_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/dashboard/dashboard_action.php -------------------------------------------------------------------------------- /page_action/exam/exam_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/exam/exam_action.php -------------------------------------------------------------------------------- /page_action/exam/exam_panel/exam_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/exam/exam_panel/exam_panel.php -------------------------------------------------------------------------------- /page_action/exam_panel/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/exam_panel/css/style.css -------------------------------------------------------------------------------- /page_action/exam_panel/exam_panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/exam_panel/exam_panel.php -------------------------------------------------------------------------------- /page_action/install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/install/install.php -------------------------------------------------------------------------------- /page_action/nav_bar/chat_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/nav_bar/chat_system.php -------------------------------------------------------------------------------- /page_action/nav_bar/nav_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/nav_bar/nav_bar.php -------------------------------------------------------------------------------- /page_action/nav_bar/sql_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/nav_bar/sql_editor.php -------------------------------------------------------------------------------- /page_action/nav_bar/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/nav_bar/theme.php -------------------------------------------------------------------------------- /page_action/notice/notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/notice/notice.php -------------------------------------------------------------------------------- /page_action/program_page_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/program_page_action.php -------------------------------------------------------------------------------- /page_action/report/attend_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/attend_report.php -------------------------------------------------------------------------------- /page_action/report/expense_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/expense_report.php -------------------------------------------------------------------------------- /page_action/report/income_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/income_report.php -------------------------------------------------------------------------------- /page_action/report/payment_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/payment_report.php -------------------------------------------------------------------------------- /page_action/report/profit_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/profit_report.php -------------------------------------------------------------------------------- /page_action/report/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/report/report.php -------------------------------------------------------------------------------- /page_action/result/add_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/result/add_result.php -------------------------------------------------------------------------------- /page_action/result/result_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/result/result_action.php -------------------------------------------------------------------------------- /page_action/setting/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/setting/setting.php -------------------------------------------------------------------------------- /page_action/sms/sms_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/sms/sms_action.php -------------------------------------------------------------------------------- /page_action/student_list/basic_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/basic_list.php -------------------------------------------------------------------------------- /page_action/student_list/payment_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/payment_option.php -------------------------------------------------------------------------------- /page_action/student_list/payment_overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/payment_overview.php -------------------------------------------------------------------------------- /page_action/student_list/program_overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/program_overview.php -------------------------------------------------------------------------------- /page_action/student_list/student_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/student_list.php -------------------------------------------------------------------------------- /page_action/student_list/student_list_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_list/student_list_content.php -------------------------------------------------------------------------------- /page_action/student_profile/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_profile/info.php -------------------------------------------------------------------------------- /page_action/student_profile/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_profile/payment.php -------------------------------------------------------------------------------- /page_action/student_profile/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_profile/profile.php -------------------------------------------------------------------------------- /page_action/student_profile/program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/student_profile/program.php -------------------------------------------------------------------------------- /page_action/subject_page_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/subject_page_action.php -------------------------------------------------------------------------------- /page_action/user/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/user/user.php -------------------------------------------------------------------------------- /page_action/user/user_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/user/user_list.php -------------------------------------------------------------------------------- /page_action/user/user_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/user/user_profile.php -------------------------------------------------------------------------------- /page_action/user/user_profile_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/page_action/user/user_profile_body.php -------------------------------------------------------------------------------- /payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/payment.php -------------------------------------------------------------------------------- /pending_sms_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/pending_sms_list.php -------------------------------------------------------------------------------- /practice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/practice.php -------------------------------------------------------------------------------- /print_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/print_page.php -------------------------------------------------------------------------------- /profit_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/profit_report.php -------------------------------------------------------------------------------- /program_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/program_action.php -------------------------------------------------------------------------------- /program_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/program_list.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/report.php -------------------------------------------------------------------------------- /report_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/report_action.php -------------------------------------------------------------------------------- /result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/result.php -------------------------------------------------------------------------------- /result_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/result_action.php -------------------------------------------------------------------------------- /result_list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screen_shot/compare_user_activity_data.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/compare_user_activity_data.PNG -------------------------------------------------------------------------------- /screen_shot/dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/dashboard.PNG -------------------------------------------------------------------------------- /screen_shot/id_card.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/id_card.PNG -------------------------------------------------------------------------------- /screen_shot/install_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/install_screen.png -------------------------------------------------------------------------------- /screen_shot/install_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/install_success.png -------------------------------------------------------------------------------- /screen_shot/live_user_activity.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/live_user_activity.PNG -------------------------------------------------------------------------------- /screen_shot/login_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/login_screen.png -------------------------------------------------------------------------------- /screen_shot/monthly_attendence_report.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/monthly_attendence_report.PNG -------------------------------------------------------------------------------- /screen_shot/payment_dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/payment_dashboard.PNG -------------------------------------------------------------------------------- /screen_shot/payment_money_recept.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/payment_money_recept.PNG -------------------------------------------------------------------------------- /screen_shot/payment_status_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/payment_status_list.PNG -------------------------------------------------------------------------------- /screen_shot/print_id_card.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/print_id_card.PNG -------------------------------------------------------------------------------- /screen_shot/sms_dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/sms_dashboard.PNG -------------------------------------------------------------------------------- /screen_shot/student_profile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/student_profile.PNG -------------------------------------------------------------------------------- /screen_shot/theme_change.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/theme_change.PNG -------------------------------------------------------------------------------- /screen_shot/update_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/update_setting.png -------------------------------------------------------------------------------- /screen_shot/user_profile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/screen_shot/user_profile.PNG -------------------------------------------------------------------------------- /script/account/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/account/account.php -------------------------------------------------------------------------------- /script/api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/api/api.php -------------------------------------------------------------------------------- /script/attendence/attendence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/attendence/attendence.php -------------------------------------------------------------------------------- /script/batch/batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/batch/batch.php -------------------------------------------------------------------------------- /script/chat/chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/chat/chat.php -------------------------------------------------------------------------------- /script/contest/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/contest/contest.php -------------------------------------------------------------------------------- /script/exam/exam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/exam/exam.js -------------------------------------------------------------------------------- /script/exam/exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/exam/exam.php -------------------------------------------------------------------------------- /script/exam/exam_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/exam/exam_category.php -------------------------------------------------------------------------------- /script/graph/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/graph/graph.php -------------------------------------------------------------------------------- /script/id_card/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/id_card/id.php -------------------------------------------------------------------------------- /script/id_card/id_card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/id_card/id_card.js -------------------------------------------------------------------------------- /script/id_card/id_card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/id_card/id_card.php -------------------------------------------------------------------------------- /script/install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/install/install.php -------------------------------------------------------------------------------- /script/notice/notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/notice/notice.php -------------------------------------------------------------------------------- /script/payment/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/payment/payment.js -------------------------------------------------------------------------------- /script/payment/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/payment/payment.php -------------------------------------------------------------------------------- /script/payment/set_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/payment/set_payment.php -------------------------------------------------------------------------------- /script/program/program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/program/program.php -------------------------------------------------------------------------------- /script/program/program_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/program/program_form.php -------------------------------------------------------------------------------- /script/report/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/report/report.php -------------------------------------------------------------------------------- /script/result/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/result/result.php -------------------------------------------------------------------------------- /script/setting/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/setting/setting.php -------------------------------------------------------------------------------- /script/site_activity/site_activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/site_activity/site_activity.php -------------------------------------------------------------------------------- /script/site_content/calender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/site_content/calender.php -------------------------------------------------------------------------------- /script/site_content/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/site_content/form.php -------------------------------------------------------------------------------- /script/site_content/site_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/site_content/site_config.php -------------------------------------------------------------------------------- /script/site_content/site_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/site_content/site_content.php -------------------------------------------------------------------------------- /script/sms/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/sms/sms.php -------------------------------------------------------------------------------- /script/student/add_ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/student/add_ajax.js -------------------------------------------------------------------------------- /script/student/student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/student/student.php -------------------------------------------------------------------------------- /script/student/student_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/student/student_edit.php -------------------------------------------------------------------------------- /script/subject/subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/subject/subject.php -------------------------------------------------------------------------------- /script/template_class/template_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/template_class/template_class.php -------------------------------------------------------------------------------- /script/theme/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/theme/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/theme/theme.php -------------------------------------------------------------------------------- /script/user/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/script/user/user.php -------------------------------------------------------------------------------- /setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/setting.php -------------------------------------------------------------------------------- /setting_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/setting_action.php -------------------------------------------------------------------------------- /sms_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/sms_action.php -------------------------------------------------------------------------------- /sms_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/sms_dashboard.php -------------------------------------------------------------------------------- /sql/install_sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/sql/install_sql.sql -------------------------------------------------------------------------------- /sql/sql.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student.php -------------------------------------------------------------------------------- /student/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/app/app.js -------------------------------------------------------------------------------- /student/app/lib/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/app/lib/angular-route.js -------------------------------------------------------------------------------- /student/app/lib/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/app/lib/angular.min.js -------------------------------------------------------------------------------- /student/content/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/css/style.css -------------------------------------------------------------------------------- /student/content/mdb/License.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/License.pdf -------------------------------------------------------------------------------- /student/content/mdb/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/README.txt -------------------------------------------------------------------------------- /student/content/mdb/css/addons/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/addons/datatables.css -------------------------------------------------------------------------------- /student/content/mdb/css/addons/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/addons/datatables.min.css -------------------------------------------------------------------------------- /student/content/mdb/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/bootstrap.css -------------------------------------------------------------------------------- /student/content/mdb/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/bootstrap.min.css -------------------------------------------------------------------------------- /student/content/mdb/css/mdb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/mdb.css -------------------------------------------------------------------------------- /student/content/mdb/css/mdb.lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/mdb.lite.css -------------------------------------------------------------------------------- /student/content/mdb/css/mdb.lite.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/mdb.lite.min.css -------------------------------------------------------------------------------- /student/content/mdb/css/mdb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/css/mdb.min.css -------------------------------------------------------------------------------- /student/content/mdb/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/content/mdb/css/style.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /student/content/mdb/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /student/content/mdb/img/lightbox/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/lightbox/default-skin.png -------------------------------------------------------------------------------- /student/content/mdb/img/lightbox/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/lightbox/default-skin.svg -------------------------------------------------------------------------------- /student/content/mdb/img/lightbox/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/lightbox/preloader.gif -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/01.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/02.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/03.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/04.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/05.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/06.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/07.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/08.png -------------------------------------------------------------------------------- /student/content/mdb/img/overlays/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/overlays/09.png -------------------------------------------------------------------------------- /student/content/mdb/img/svg/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/svg/arrow_left.svg -------------------------------------------------------------------------------- /student/content/mdb/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/img/svg/arrow_right.svg -------------------------------------------------------------------------------- /student/content/mdb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/index.html -------------------------------------------------------------------------------- /student/content/mdb/js/addons/datatables-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/addons/datatables-select.js -------------------------------------------------------------------------------- /student/content/mdb/js/addons/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/addons/datatables.js -------------------------------------------------------------------------------- /student/content/mdb/js/addons/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/addons/datatables.min.js -------------------------------------------------------------------------------- /student/content/mdb/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/bootstrap.js -------------------------------------------------------------------------------- /student/content/mdb/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/bootstrap.min.js -------------------------------------------------------------------------------- /student/content/mdb/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /student/content/mdb/js/mdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/mdb.js -------------------------------------------------------------------------------- /student/content/mdb/js/mdb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/mdb.min.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/chart.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/enhanced-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/enhanced-modals.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/forms-free.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/forms-free.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/jquery.easing.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/scrolling-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/scrolling-navbar.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/velocity.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/velocity.min.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/waves.js -------------------------------------------------------------------------------- /student/content/mdb/js/modules/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/modules/wow.js -------------------------------------------------------------------------------- /student/content/mdb/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/js/popper.min.js -------------------------------------------------------------------------------- /student/content/mdb/scss/_custom-styles.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles -------------------------------------------------------------------------------- /student/content/mdb/scss/_custom-variables.scss: -------------------------------------------------------------------------------- 1 | // Your custom variables -------------------------------------------------------------------------------- /student/content/mdb/scss/addons/_datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/addons/_datatables.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_colors.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_global.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_helpers.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_masks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_masks.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_mixins.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_typography.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_variables.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/core/_waves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/core/_waves.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_badges.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_buttons.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_cards.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_carousels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_carousels.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_depreciated.scss: -------------------------------------------------------------------------------- 1 | // These settings will be only for one version 2 | -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_dropdowns.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_footers.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_forms.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_input-group.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_list-group.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_loader.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_modals.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_msc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_msc.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_navbars.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_pagination.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_steppers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_steppers.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_switch.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/free/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/free/_tables.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/mdb.lite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/mdb.lite.scss -------------------------------------------------------------------------------- /student/content/mdb/scss/mdb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/content/mdb/scss/mdb.scss -------------------------------------------------------------------------------- /student/controller/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/controller/controller.js -------------------------------------------------------------------------------- /student/data/dashboard_menu_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/data/dashboard_menu_list.html -------------------------------------------------------------------------------- /student/example/login/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/Gruntfile.js -------------------------------------------------------------------------------- /student/example/login/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/LICENSE -------------------------------------------------------------------------------- /student/example/login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/index.html -------------------------------------------------------------------------------- /student/example/login/modules/home/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/modules/home/controllers.js -------------------------------------------------------------------------------- /student/example/login/modules/home/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/modules/home/views/home.html -------------------------------------------------------------------------------- /student/example/login/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/scripts/app.js -------------------------------------------------------------------------------- /student/example/login/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/app.js -------------------------------------------------------------------------------- /student/example/login/src/error/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/error/error.js -------------------------------------------------------------------------------- /student/example/login/src/error/error.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/error/error.tpl.html -------------------------------------------------------------------------------- /student/example/login/src/grandfather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/grandfather.js -------------------------------------------------------------------------------- /student/example/login/src/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/home/home.js -------------------------------------------------------------------------------- /student/example/login/src/home/home.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/home/home.tpl.html -------------------------------------------------------------------------------- /student/example/login/src/login-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/login-service.js -------------------------------------------------------------------------------- /student/example/login/src/mockhttp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/mockhttp.js -------------------------------------------------------------------------------- /student/example/login/src/pages/admin.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/pages/admin.tpl.html -------------------------------------------------------------------------------- /student/example/login/src/pages/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/pages/pages.js -------------------------------------------------------------------------------- /student/example/login/src/pages/user.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/pages/user.tpl.html -------------------------------------------------------------------------------- /student/example/login/src/register/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/register/register.js -------------------------------------------------------------------------------- /student/example/login/src/register/register.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/register/register.less -------------------------------------------------------------------------------- /student/example/login/src/routing-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/src/routing-config.js -------------------------------------------------------------------------------- /student/example/login/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/test/karma.conf.js -------------------------------------------------------------------------------- /student/example/login/test/spec/login-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/example/login/test/spec/login-service.js -------------------------------------------------------------------------------- /student/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/index.html -------------------------------------------------------------------------------- /student/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/test.html -------------------------------------------------------------------------------- /student/views/404.html: -------------------------------------------------------------------------------- 1 | 404 Not Found -------------------------------------------------------------------------------- /student/views/batch_info.html: -------------------------------------------------------------------------------- 1 | Batch Info -------------------------------------------------------------------------------- /student/views/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirhamza05/Student-Management-System/HEAD/student/views/dashboard.html -------------------------------------------------------------------------------- /student/views/header.html: -------------------------------------------------------------------------------- 1 |