├── .bowerrc ├── .gitattributes ├── .gitignore ├── ContosoUniversity.csproj ├── ContosoUniversity.sln ├── Controllers ├── CoursesController.cs ├── DepartmentsController.cs ├── HomeController.cs ├── InstructorsController.cs ├── SPAin1PlatformController.cs └── StudentsController.cs ├── Data ├── DbInitializer.cs └── SchoolContext.cs ├── Migrations ├── 20170816151242_InitialCreate.Designer.cs ├── 20170816151242_InitialCreate.cs ├── 20170816154125_MaxLengthOnNames.Designer.cs ├── 20170816154125_MaxLengthOnNames.cs ├── 20170816154807_ColumnFirstName.Designer.cs ├── 20170816154807_ColumnFirstName.cs ├── 20170816155401_ComplexDataModel.Designer.cs ├── 20170816155401_ComplexDataModel.cs ├── 20170816180112_RowVersion.Designer.cs ├── 20170816180112_RowVersion.cs ├── 20170816195930_Inheritance.Designer.cs ├── 20170816195930_Inheritance.cs └── SchoolContextModelSnapshot.cs ├── Models ├── Course.cs ├── CourseAssignment.cs ├── Department.cs ├── Enrollment.cs ├── ErrorViewModel.cs ├── Instructor.cs ├── OfficeAssignment.cs ├── Person.cs ├── SchoolViewModels │ ├── AssignedCourseData.cs │ ├── EnrollmentDateGroup.cs │ └── InstructorIndexData.cs └── Student.cs ├── PaginatedList.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── Views ├── Courses │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ ├── Index.cshtml │ ├── UpdateCourseCredits.cshtml │ ├── _Create.cshtml │ ├── _Edit.cshtml │ └── _Index.cshtml ├── Departments │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ ├── Index.cshtml │ └── _Index.cshtml ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Instructors │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ ├── Index.cshtml │ ├── _Index1.cshtml │ └── _Index2.cshtml ├── SPAin1Platform │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Navigation.cshtml │ └── _ValidationScriptsPartial.cshtml ├── Students │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ ├── Index.cshtml │ ├── _AddCourseModal.cshtml │ ├── _Details.cshtml │ └── _Index.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bower.json ├── bundleconfig.json ├── readme.md └── wwwroot ├── SPA ├── inline.gif ├── loading.gif ├── readme.txt ├── sm-loader.gif ├── toufiqElahySPA.css └── toufiqElahySPA.js ├── css ├── sideNav.css ├── site.css └── site.min.css ├── favicon.ico ├── images ├── banner1.svg ├── banner2.svg ├── banner3.svg ├── banner4.svg └── loading.gif ├── js ├── site.js └── site.min.js └── lib ├── bootstrap ├── .bower.json ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Gruntfile.js ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── bower.json ├── dist │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── grunt │ ├── .jshintrc │ ├── bs-commonjs-generator.js │ ├── bs-glyphicons-data-generator.js │ ├── bs-lessdoc-parser.js │ ├── bs-raw-files-generator.js │ ├── change-version.js │ ├── configBridge.json │ ├── npm-shrinkwrap.json │ └── sauce_browsers.yml ├── js │ ├── .jscsrc │ ├── .jshintrc │ ├── affix.js │ ├── alert.js │ ├── button.js │ ├── carousel.js │ ├── collapse.js │ ├── dropdown.js │ ├── modal.js │ ├── popover.js │ ├── scrollspy.js │ ├── tab.js │ ├── tooltip.js │ └── transition.js ├── less │ ├── .csscomb.json │ ├── .csslintrc │ ├── alerts.less │ ├── badges.less │ ├── bootstrap.less │ ├── breadcrumbs.less │ ├── button-groups.less │ ├── buttons.less │ ├── carousel.less │ ├── close.less │ ├── code.less │ ├── component-animations.less │ ├── dropdowns.less │ ├── forms.less │ ├── glyphicons.less │ ├── grid.less │ ├── input-groups.less │ ├── jumbotron.less │ ├── labels.less │ ├── list-group.less │ ├── media.less │ ├── mixins.less │ ├── mixins │ │ ├── alerts.less │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── buttons.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── gradients.less │ │ ├── grid-framework.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── image.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── nav-divider.less │ │ ├── nav-vertical-align.less │ │ ├── opacity.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── progress-bar.less │ │ ├── reset-filter.less │ │ ├── reset-text.less │ │ ├── resize.less │ │ ├── responsive-visibility.less │ │ ├── size.less │ │ ├── tab-focus.less │ │ ├── table-row.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ ├── modals.less │ ├── navbar.less │ ├── navs.less │ ├── normalize.less │ ├── pager.less │ ├── pagination.less │ ├── panels.less │ ├── popovers.less │ ├── print.less │ ├── progress-bars.less │ ├── responsive-embed.less │ ├── responsive-utilities.less │ ├── scaffolding.less │ ├── tables.less │ ├── theme.less │ ├── thumbnails.less │ ├── tooltip.less │ ├── type.less │ ├── utilities.less │ ├── variables.less │ └── wells.less ├── nuget │ ├── MyGet.ps1 │ ├── bootstrap.less.nuspec │ └── bootstrap.nuspec ├── package.js └── package.json ├── jquery-validation-unobtrusive ├── .bower.json ├── LICENSE.txt ├── bower.json ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── .bower.json ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── build │ └── release.js ├── changelog.md ├── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js ├── package.json ├── src │ ├── additional │ │ ├── accept.js │ │ ├── additional.js │ │ ├── alphanumeric.js │ │ ├── bankaccountNL.js │ │ ├── bankorgiroaccountNL.js │ │ ├── bic.js │ │ ├── cifES.js │ │ ├── cpfBR.js │ │ ├── creditcardtypes.js │ │ ├── currency.js │ │ ├── dateFA.js │ │ ├── dateITA.js │ │ ├── dateNL.js │ │ ├── extension.js │ │ ├── giroaccountNL.js │ │ ├── iban.js │ │ ├── integer.js │ │ ├── ipv4.js │ │ ├── ipv6.js │ │ ├── lettersonly.js │ │ ├── letterswithbasicpunc.js │ │ ├── mobileNL.js │ │ ├── mobileUK.js │ │ ├── nieES.js │ │ ├── nifES.js │ │ ├── notEqualTo.js │ │ ├── nowhitespace.js │ │ ├── pattern.js │ │ ├── phoneNL.js │ │ ├── phoneUK.js │ │ ├── phoneUS.js │ │ ├── phonesUK.js │ │ ├── postalCodeCA.js │ │ ├── postalcodeBR.js │ │ ├── postalcodeIT.js │ │ ├── postalcodeNL.js │ │ ├── postcodeUK.js │ │ ├── require_from_group.js │ │ ├── skip_or_fill_minimum.js │ │ ├── statesUS.js │ │ ├── strippedminlength.js │ │ ├── time.js │ │ ├── time12h.js │ │ ├── url2.js │ │ ├── vinUS.js │ │ ├── zipcodeUS.js │ │ └── ziprange.js │ ├── ajax.js │ ├── core.js │ └── localization │ │ ├── messages_ar.js │ │ ├── messages_bg.js │ │ ├── messages_bn_BD.js │ │ ├── messages_ca.js │ │ ├── messages_cs.js │ │ ├── messages_da.js │ │ ├── messages_de.js │ │ ├── messages_el.js │ │ ├── messages_es.js │ │ ├── messages_es_AR.js │ │ ├── messages_es_PE.js │ │ ├── messages_et.js │ │ ├── messages_eu.js │ │ ├── messages_fa.js │ │ ├── messages_fi.js │ │ ├── messages_fr.js │ │ ├── messages_ge.js │ │ ├── messages_gl.js │ │ ├── messages_he.js │ │ ├── messages_hr.js │ │ ├── messages_hu.js │ │ ├── messages_hy_AM.js │ │ ├── messages_id.js │ │ ├── messages_is.js │ │ ├── messages_it.js │ │ ├── messages_ja.js │ │ ├── messages_ka.js │ │ ├── messages_kk.js │ │ ├── messages_ko.js │ │ ├── messages_lt.js │ │ ├── messages_lv.js │ │ ├── messages_my.js │ │ ├── messages_nl.js │ │ ├── messages_no.js │ │ ├── messages_pl.js │ │ ├── messages_pt_BR.js │ │ ├── messages_pt_PT.js │ │ ├── messages_ro.js │ │ ├── messages_ru.js │ │ ├── messages_si.js │ │ ├── messages_sk.js │ │ ├── messages_sl.js │ │ ├── messages_sr.js │ │ ├── messages_sr_lat.js │ │ ├── messages_sv.js │ │ ├── messages_th.js │ │ ├── messages_tj.js │ │ ├── messages_tr.js │ │ ├── messages_uk.js │ │ ├── messages_vi.js │ │ ├── messages_zh.js │ │ ├── messages_zh_TW.js │ │ ├── methods_de.js │ │ ├── methods_es_CL.js │ │ ├── methods_fi.js │ │ ├── methods_nl.js │ │ └── methods_pt.js └── validation.jquery.json └── jquery ├── .bower.json ├── AUTHORS.txt ├── LICENSE.txt ├── README.md ├── bower.json ├── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map └── src ├── .jshintrc ├── ajax.js ├── ajax ├── jsonp.js ├── load.js ├── parseJSON.js ├── parseXML.js ├── script.js ├── var │ ├── location.js │ ├── nonce.js │ └── rquery.js └── xhr.js ├── attributes.js ├── attributes ├── attr.js ├── classes.js ├── prop.js ├── support.js └── val.js ├── callbacks.js ├── core.js ├── core ├── access.js ├── init.js ├── parseHTML.js ├── ready.js ├── support.js └── var │ └── rsingleTag.js ├── css.js ├── css ├── addGetHookIf.js ├── adjustCSS.js ├── curCSS.js ├── defaultDisplay.js ├── hiddenVisibleSelectors.js ├── showHide.js ├── support.js └── var │ ├── cssExpand.js │ ├── getStyles.js │ ├── isHidden.js │ ├── rmargin.js │ ├── rnumnonpx.js │ └── swap.js ├── data.js ├── data ├── Data.js ├── accepts.js ├── support.js └── var │ ├── acceptData.js │ ├── dataPriv.js │ └── dataUser.js ├── deferred.js ├── deprecated.js ├── dimensions.js ├── effects.js ├── effects ├── Tween.js ├── animatedSelector.js └── support.js ├── event.js ├── event ├── ajax.js ├── alias.js ├── focusin.js ├── support.js └── trigger.js ├── exports ├── amd.js └── global.js ├── intro.js ├── jquery.js ├── manipulation.js ├── manipulation ├── _evalUrl.js ├── buildFragment.js ├── createSafeFragment.js ├── getAll.js ├── setGlobalEval.js ├── support.js ├── var │ ├── nodeNames.js │ ├── rcheckableType.js │ ├── rleadingWhitespace.js │ ├── rscriptType.js │ └── rtagName.js └── wrapMap.js ├── offset.js ├── outro.js ├── queue.js ├── queue └── delay.js ├── selector-native.js ├── selector-sizzle.js ├── selector.js ├── serialize.js ├── support.js ├── traversing.js ├── traversing ├── findFilter.js └── var │ ├── dir.js │ ├── rneedsContext.js │ └── siblings.js ├── var ├── arr.js ├── class2type.js ├── concat.js ├── deletedIds.js ├── document.js ├── documentElement.js ├── hasOwn.js ├── indexOf.js ├── pnum.js ├── push.js ├── rcssNum.js ├── rnotwhite.js ├── slice.js ├── support.js └── toString.js └── wrap.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/.gitignore -------------------------------------------------------------------------------- /ContosoUniversity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/ContosoUniversity.csproj -------------------------------------------------------------------------------- /ContosoUniversity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/ContosoUniversity.sln -------------------------------------------------------------------------------- /Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /Controllers/DepartmentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/DepartmentsController.cs -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Controllers/InstructorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/InstructorsController.cs -------------------------------------------------------------------------------- /Controllers/SPAin1PlatformController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/SPAin1PlatformController.cs -------------------------------------------------------------------------------- /Controllers/StudentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Controllers/StudentsController.cs -------------------------------------------------------------------------------- /Data/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Data/DbInitializer.cs -------------------------------------------------------------------------------- /Data/SchoolContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Data/SchoolContext.cs -------------------------------------------------------------------------------- /Migrations/20170816151242_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816151242_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816151242_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816151242_InitialCreate.cs -------------------------------------------------------------------------------- /Migrations/20170816154125_MaxLengthOnNames.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816154125_MaxLengthOnNames.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816154125_MaxLengthOnNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816154125_MaxLengthOnNames.cs -------------------------------------------------------------------------------- /Migrations/20170816154807_ColumnFirstName.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816154807_ColumnFirstName.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816154807_ColumnFirstName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816154807_ColumnFirstName.cs -------------------------------------------------------------------------------- /Migrations/20170816155401_ComplexDataModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816155401_ComplexDataModel.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816155401_ComplexDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816155401_ComplexDataModel.cs -------------------------------------------------------------------------------- /Migrations/20170816180112_RowVersion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816180112_RowVersion.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816180112_RowVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816180112_RowVersion.cs -------------------------------------------------------------------------------- /Migrations/20170816195930_Inheritance.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816195930_Inheritance.Designer.cs -------------------------------------------------------------------------------- /Migrations/20170816195930_Inheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/20170816195930_Inheritance.cs -------------------------------------------------------------------------------- /Migrations/SchoolContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Migrations/SchoolContextModelSnapshot.cs -------------------------------------------------------------------------------- /Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Course.cs -------------------------------------------------------------------------------- /Models/CourseAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/CourseAssignment.cs -------------------------------------------------------------------------------- /Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Department.cs -------------------------------------------------------------------------------- /Models/Enrollment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Enrollment.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Models/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Instructor.cs -------------------------------------------------------------------------------- /Models/OfficeAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/OfficeAssignment.cs -------------------------------------------------------------------------------- /Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Person.cs -------------------------------------------------------------------------------- /Models/SchoolViewModels/AssignedCourseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/SchoolViewModels/AssignedCourseData.cs -------------------------------------------------------------------------------- /Models/SchoolViewModels/EnrollmentDateGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/SchoolViewModels/EnrollmentDateGroup.cs -------------------------------------------------------------------------------- /Models/SchoolViewModels/InstructorIndexData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/SchoolViewModels/InstructorIndexData.cs -------------------------------------------------------------------------------- /Models/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Models/Student.cs -------------------------------------------------------------------------------- /PaginatedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/PaginatedList.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Startup.cs -------------------------------------------------------------------------------- /Views/Courses/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/Create.cshtml -------------------------------------------------------------------------------- /Views/Courses/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/Delete.cshtml -------------------------------------------------------------------------------- /Views/Courses/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/Details.cshtml -------------------------------------------------------------------------------- /Views/Courses/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/Edit.cshtml -------------------------------------------------------------------------------- /Views/Courses/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/Index.cshtml -------------------------------------------------------------------------------- /Views/Courses/UpdateCourseCredits.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/UpdateCourseCredits.cshtml -------------------------------------------------------------------------------- /Views/Courses/_Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/_Create.cshtml -------------------------------------------------------------------------------- /Views/Courses/_Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/_Edit.cshtml -------------------------------------------------------------------------------- /Views/Courses/_Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Courses/_Index.cshtml -------------------------------------------------------------------------------- /Views/Departments/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/Create.cshtml -------------------------------------------------------------------------------- /Views/Departments/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/Delete.cshtml -------------------------------------------------------------------------------- /Views/Departments/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/Details.cshtml -------------------------------------------------------------------------------- /Views/Departments/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/Edit.cshtml -------------------------------------------------------------------------------- /Views/Departments/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/Index.cshtml -------------------------------------------------------------------------------- /Views/Departments/_Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Departments/_Index.cshtml -------------------------------------------------------------------------------- /Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Views/Instructors/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/Create.cshtml -------------------------------------------------------------------------------- /Views/Instructors/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/Delete.cshtml -------------------------------------------------------------------------------- /Views/Instructors/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/Details.cshtml -------------------------------------------------------------------------------- /Views/Instructors/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/Edit.cshtml -------------------------------------------------------------------------------- /Views/Instructors/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/Index.cshtml -------------------------------------------------------------------------------- /Views/Instructors/_Index1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/_Index1.cshtml -------------------------------------------------------------------------------- /Views/Instructors/_Index2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Instructors/_Index2.cshtml -------------------------------------------------------------------------------- /Views/SPAin1Platform/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/SPAin1Platform/Index.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Navigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Shared/_Navigation.cshtml -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/Students/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/Create.cshtml -------------------------------------------------------------------------------- /Views/Students/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/Delete.cshtml -------------------------------------------------------------------------------- /Views/Students/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/Details.cshtml -------------------------------------------------------------------------------- /Views/Students/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/Edit.cshtml -------------------------------------------------------------------------------- /Views/Students/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/Index.cshtml -------------------------------------------------------------------------------- /Views/Students/_AddCourseModal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/_AddCourseModal.cshtml -------------------------------------------------------------------------------- /Views/Students/_Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/_Details.cshtml -------------------------------------------------------------------------------- /Views/Students/_Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/Students/_Index.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/appsettings.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/bower.json -------------------------------------------------------------------------------- /bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/bundleconfig.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/readme.md -------------------------------------------------------------------------------- /wwwroot/SPA/inline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/inline.gif -------------------------------------------------------------------------------- /wwwroot/SPA/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/loading.gif -------------------------------------------------------------------------------- /wwwroot/SPA/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/readme.txt -------------------------------------------------------------------------------- /wwwroot/SPA/sm-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/sm-loader.gif -------------------------------------------------------------------------------- /wwwroot/SPA/toufiqElahySPA.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/toufiqElahySPA.css -------------------------------------------------------------------------------- /wwwroot/SPA/toufiqElahySPA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/SPA/toufiqElahySPA.js -------------------------------------------------------------------------------- /wwwroot/css/sideNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/css/sideNav.css -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /wwwroot/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/images/loading.gif -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/Gemfile -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/bs-commonjs-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/bs-commonjs-generator.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/bs-glyphicons-data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/bs-glyphicons-data-generator.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/bs-raw-files-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/bs-raw-files-generator.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/change-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/change-version.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/npm-shrinkwrap.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/background-variant.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/border-radius.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/center-block.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/grid-framework.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/progress-bar.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/reset-text.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/nuget/bootstrap.less.nuspec -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/package.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation-unobtrusive/bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/CONTRIBUTING.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/build/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/build/release.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/accept.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/additional.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/bic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/bic.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/cifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/cifES.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/cpfBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/cpfBR.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/currency.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/dateFA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/dateFA.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/dateITA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/dateITA.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/dateNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/dateNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/extension.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/iban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/iban.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/integer.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/ipv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/ipv4.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/ipv6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/ipv6.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/lettersonly.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/mobileNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/mobileNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/mobileUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/mobileUK.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/nieES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/nieES.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/nifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/nifES.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/notEqualTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/pattern.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/phoneNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/phoneNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/phoneUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/phoneUK.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/phoneUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/phoneUS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/phonesUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/phonesUK.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/postcodeUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/require_from_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/require_from_group.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/statesUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/statesUS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/time.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/time12h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/time12h.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/url2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/url2.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/vinUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/vinUS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/additional/ziprange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/additional/ziprange.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ar.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_bg.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ca.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_cs.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_da.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_de.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_el.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_es.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_et.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_eu.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_fa.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_fi.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_fr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ge.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_gl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_he.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_hr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_hu.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_id.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_is.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_it.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ja.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ka.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_kk.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ko.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_lt.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_lv.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_my.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_nl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_no.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_pl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ro.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_ru.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_si.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_sk.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_sl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_sr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_sv.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_th.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_tj.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_tr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_uk.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_vi.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_zh.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/methods_de.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/methods_fi.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/methods_nl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/src/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/src/localization/methods_pt.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/validation.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery-validation/validation.jquery.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/effects/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/createSafeFragment.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/var/nodeNames.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/var/rleadingWhitespace.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Student-Management-System-/HEAD/wwwroot/lib/jquery/src/wrap.js --------------------------------------------------------------------------------