├── .DS_Store ├── .gitattributes ├── README.md ├── pom.xml ├── src ├── .DS_Store ├── main │ ├── .DS_Store │ ├── java │ │ └── com │ │ │ └── ilovecl │ │ │ └── demo │ │ │ ├── DemoApplication.java │ │ │ ├── MyWebAppConfigurer.java │ │ │ ├── _const │ │ │ ├── CorsConfig.java │ │ │ ├── RepairEnum.java │ │ │ ├── RepairEnumCN.java │ │ │ ├── StudentConst.java │ │ │ └── UrgentRepairEnum.java │ │ │ ├── dao │ │ │ ├── AdminDao.java │ │ │ ├── DoorDao.java │ │ │ ├── MaintenanceDao.java │ │ │ ├── RepairDao.java │ │ │ ├── StudentDao.java │ │ │ ├── TechnicianDao.java │ │ │ └── UrgentRepairDao.java │ │ │ ├── dto │ │ │ ├── DooResult.java │ │ │ ├── LoginResult.java │ │ │ ├── MaintenanceResult.java │ │ │ ├── ModifyRepairResult.java │ │ │ ├── RegisterResult.java │ │ │ ├── StudentResult.java │ │ │ ├── StudentUrgentResult.java │ │ │ └── UrgentRepairResult.java │ │ │ ├── entity │ │ │ ├── Admin.java │ │ │ ├── Door.java │ │ │ ├── Maintenance.java │ │ │ ├── Repair.java │ │ │ ├── RepairInfoVo.java │ │ │ ├── Student.java │ │ │ ├── Technician.java │ │ │ └── UrgentRepair.java │ │ │ ├── interceptor │ │ │ ├── AdminSessionInterceptor.java │ │ │ └── StudentSessionInterceptor.java │ │ │ ├── service │ │ │ ├── AdminService.java │ │ │ ├── LoginService.java │ │ │ ├── MaintenanceService.java │ │ │ ├── RegisterService.java │ │ │ ├── RepairService.java │ │ │ ├── StudentService.java │ │ │ ├── TechnicianService.java │ │ │ ├── UrgentRepairService.java │ │ │ └── impl │ │ │ │ ├── AdminServiceImpl.java │ │ │ │ ├── LoginServiceImpl.java │ │ │ │ ├── MaintenanceServiceImpl.java │ │ │ │ ├── RegisterServiceImpl.java │ │ │ │ ├── RepairServiceImpl.java │ │ │ │ ├── StudentServiceImpl.java │ │ │ │ ├── TechnicianServiceImpl.java │ │ │ │ └── UrgentRepairServiceImpl.java │ │ │ ├── util │ │ │ ├── MD5.java │ │ │ └── Spider.java │ │ │ └── web │ │ │ ├── AdminController.java │ │ │ └── StudentController.java │ ├── resources │ │ ├── application.properties │ │ ├── mybatis │ │ │ ├── mapper │ │ │ │ ├── AdminDao.xml │ │ │ │ ├── DoorDao.xml │ │ │ │ ├── MaintenanceDao.xml │ │ │ │ ├── RepairDao.xml │ │ │ │ ├── StudentDao.xml │ │ │ │ ├── TechnicianDao.xml │ │ │ │ └── UrgentRepairDao.xml │ │ │ └── mybatis-config.xml │ │ └── static │ │ │ ├── admin │ │ │ ├── assets │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── css │ │ │ │ │ ├── form-elements.css │ │ │ │ │ └── style.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── less │ │ │ │ │ │ ├── animated.less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ico │ │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ │ └── favicon.png │ │ │ │ ├── img │ │ │ │ │ └── backgrounds │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 1@2x.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ ├── 2@2x.jpg │ │ │ │ │ │ ├── 3.jpg │ │ │ │ │ │ └── 3@2x.jpg │ │ │ │ └── js │ │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ │ ├── jquery.backstretch.js │ │ │ │ │ ├── jquery.backstretch.min.js │ │ │ │ │ ├── login.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── scripts.js │ │ │ ├── css │ │ │ │ ├── adminDecoration.css │ │ │ │ ├── login-varab.30c2bb34.css │ │ │ │ └── photo │ │ │ │ │ └── login_background.jpg │ │ │ ├── icon │ │ │ │ ├── redleaf.png │ │ │ │ └── redleaf.svg │ │ │ ├── js │ │ │ │ ├── jq.670de40a.js │ │ │ │ └── loginab.ca36a175.js │ │ │ └── photo │ │ │ │ └── login_background.jpg │ │ │ ├── layui │ │ │ ├── css │ │ │ │ ├── layui.css │ │ │ │ ├── layui.mobile.css │ │ │ │ └── modules │ │ │ │ │ ├── code.css │ │ │ │ │ ├── laydate │ │ │ │ │ └── default │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── layer │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ └── iconfont.woff2 │ │ │ ├── images │ │ │ │ └── face │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ └── 9.gif │ │ │ ├── lay │ │ │ │ └── modules │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── colorpicker.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── layedit.js │ │ │ │ │ ├── layer.js │ │ │ │ │ ├── laypage.js │ │ │ │ │ ├── laytpl.js │ │ │ │ │ ├── mobile.js │ │ │ │ │ ├── rate.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── transfer.js │ │ │ │ │ ├── tree.js │ │ │ │ │ ├── upload.js │ │ │ │ │ └── util.js │ │ │ ├── layui.all.js │ │ │ └── layui.js │ │ │ └── student │ │ │ ├── assets │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── css │ │ │ │ ├── form-elements.css │ │ │ │ └── style.css │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── ico │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ └── favicon.png │ │ │ ├── img │ │ │ │ └── backgrounds │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 1@2x.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 2@2x.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ └── 3@2x.jpg │ │ │ └── js │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ ├── jquery.backstretch.js │ │ │ │ ├── jquery.backstretch.min.js │ │ │ │ ├── login.js │ │ │ │ ├── placeholder.js │ │ │ │ └── scripts.js │ │ │ ├── common │ │ │ ├── bootstrap-footer.jsp │ │ │ └── bootstrap-header.jsp │ │ │ ├── css │ │ │ ├── ie10-viewport-bug-workaround.css │ │ │ ├── layui │ │ │ │ ├── css │ │ │ │ │ ├── layui.css │ │ │ │ │ ├── layui.mobile.css │ │ │ │ │ └── modules │ │ │ │ │ │ ├── code.css │ │ │ │ │ │ ├── laydate │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── laydate.css │ │ │ │ │ │ └── layer │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── layer.css │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ └── loading-2.gif │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ ├── images │ │ │ │ │ └── face │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ └── 9.gif │ │ │ │ ├── lay │ │ │ │ │ └── modules │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ ├── colorpicker.js │ │ │ │ │ │ ├── element.js │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── laydate.js │ │ │ │ │ │ ├── layedit.js │ │ │ │ │ │ ├── layer.js │ │ │ │ │ │ ├── laypage.js │ │ │ │ │ │ ├── laytpl.js │ │ │ │ │ │ ├── mobile.js │ │ │ │ │ │ ├── rate.js │ │ │ │ │ │ ├── slider.js │ │ │ │ │ │ ├── table.js │ │ │ │ │ │ ├── tree.js │ │ │ │ │ │ ├── upload.js │ │ │ │ │ │ └── util.js │ │ │ │ ├── layui.all.js │ │ │ │ └── layui.js │ │ │ ├── login-varab.30c2bb34.css │ │ │ ├── my │ │ │ │ ├── dashboard.css │ │ │ │ ├── jumbotron.css │ │ │ │ └── signin.css │ │ │ └── signup-varab.0c7cffb4.css │ │ │ ├── icon │ │ │ └── favicon.ico │ │ │ ├── js │ │ │ ├── ie-emulation-modes-warning.js │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ ├── ie8-responsive-file-warning.js │ │ │ ├── jq.670de40a.js │ │ │ ├── loginab.ca36a175.js │ │ │ └── register-varab.149a336b.js │ │ │ └── layui.css │ └── webapp │ │ ├── .DS_Store │ │ ├── 115b82b1e7863e426dab938768b8b012 │ │ ├── 11b65b521a2072795dcce18b80692792 │ │ ├── 14eec01fccc4f901a6b5a1cdc8bde729 │ │ ├── 16a002e97fb6f87c9dd7f03043723fe3 │ │ ├── 18ea7a1f102f52949d0ba3ded8617c67 │ │ ├── 1b2e47f66bb92f2e903fc073ea3099b6 │ │ ├── 1e52d5312f3536dbf0aabb1efec724bc │ │ ├── 29388f6f439b950c248636da6cb04ef3 │ │ ├── 2be7f8e8f9edbb6ad81c0ecdabc045bf │ │ ├── 2d35e0b5ee49634c0d9fa483ba2010da │ │ ├── 336cd75833d443ab58e7cc52916b6d07 │ │ ├── 34981b9d8fe9a43af5c78bd924398d02 │ │ ├── 34a19f5ef84c7f02eeabe1754a4f9b6b │ │ ├── 34d43f9f40fa04fcec9bb7278a102f41 │ │ ├── 389de63cf22d625a23fa38f31466230e │ │ ├── 3c163c8d4eedd17eec11118de046ca37 │ │ ├── 3f6ff3f52a37f8a7d44ab556ed359c51 │ │ ├── 458773fb6b092f903a2a116de60e26b │ │ ├── 46affc36ae5ec3c93a76429fbe981da9 │ │ ├── 4729731cc23c521b5285c374d2c402f8 │ │ ├── 4a8bf9fe989578891e887affef3af719 │ │ ├── 4be291791881f75b31f2a22c3fd70e02 │ │ ├── 4c06def17e47dcbbb49dc64c700bfc2f │ │ ├── 558f5090bde1783c14ba13a298735ae0 │ │ ├── 592a9cf91fbf4effe3ed4cd6699f6893 │ │ ├── 5caff1c798071fc9a79c84d3458b3bf6 │ │ ├── 5e54fb49fdc361a0d3b2f8a17a45a29f │ │ ├── 5e9761df291d5d1c25a52a51598baef5 │ │ ├── 5ee130641831b3ceda5e3ef2d8475587 │ │ ├── 65f439ae2cae3985445933cd629f64cf │ │ ├── 69205460b9d1efba9ce5299374614721 │ │ ├── 6a148447ceb907557a7a101df5937e2a │ │ ├── 7884e23b1d7465214e507aa908b6d432 │ │ ├── 80349df4993652a94ef18ccde6c8bb65 │ │ ├── 83e00e4e1f68abdd21d4150f2bdd912a │ │ ├── 84df5cf96a80016e074dda01e05bd2f5 │ │ ├── 85df2afa6e8920d7bf37c277796cab90 │ │ ├── 872f42fad3648bd537ef34e7a85697d8 │ │ ├── 88adb4847a4bb1a06be4fc898b107f28 │ │ ├── 88cc13cd183f83baa999aa0a6c8df6c1 │ │ ├── 8a497acf49ef0823c45e5148cd4e1006 │ │ ├── 90f8ca577376b47cc8ba2fb3f8add0d │ │ ├── 92834ef30242b840b4ca5f2a4ba16a4 │ │ ├── 94c63c7030d0c20f88d63c378a6c3cc9 │ │ ├── 9a8657cd57eec778d962a2802ca8c7c3 │ │ ├── 9b3f7c82201e1d26cda55f7d8c7a7771 │ │ ├── WEB-INF │ │ ├── jsp │ │ │ ├── admin │ │ │ │ ├── addArrange.jsp │ │ │ │ ├── addStudent.jsp │ │ │ │ ├── addTechnician.jsp │ │ │ │ ├── arrange.jsp │ │ │ │ ├── dashboard.jsp │ │ │ │ ├── detail.jsp │ │ │ │ ├── finish.jsp │ │ │ │ ├── header.jsp │ │ │ │ ├── student.jsp │ │ │ │ ├── technician.jsp │ │ │ │ └── urgent.jsp │ │ │ └── student │ │ │ │ ├── commit.jsp │ │ │ │ ├── common │ │ │ │ ├── bootstrap-footer.jsp │ │ │ │ └── bootstrap-header.jsp │ │ │ │ ├── dashboard.jsp │ │ │ │ ├── detail.jsp │ │ │ │ ├── feelist.jsp │ │ │ │ ├── feeupload.jsp │ │ │ │ ├── header.jsp │ │ │ │ ├── info.jsp │ │ │ │ ├── introduce.jsp │ │ │ │ ├── login.jsp │ │ │ │ ├── tobecanceled.jsp │ │ │ │ ├── update.jsp │ │ │ │ └── urgent.jsp │ │ └── web.xml │ │ ├── a13e3e478141f4f06fb6629ee5846122 │ │ ├── a1dbc9863bbb3e9a13c0a1269227b025 │ │ ├── a6490d312669d6f057d118ebbe65ae02 │ │ ├── a7f7efdc552eb23402df9eafcb5c7a6a │ │ ├── ab2409d74d7dcca8b68c7961082a5d77 │ │ ├── afa71d8a0b810029f4852723021b093f │ │ ├── b036f014c6e05b21df4f64a9990dc518 │ │ ├── b714dc5976a769000c35507e0c327e98 │ │ ├── bb74d952714668a651af8f15deb753e │ │ ├── bower_components │ │ ├── .DS_Store │ │ ├── Ionicons │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── bower.json │ │ │ ├── cheatsheet.html │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── ionicons.css │ │ │ │ └── ionicons.min.css │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── less │ │ │ │ ├── _ionicons-font.less │ │ │ │ ├── _ionicons-icons.less │ │ │ │ ├── _ionicons-variables.less │ │ │ │ └── ionicons.less │ │ │ ├── png │ │ │ │ └── 512 │ │ │ │ │ ├── alert-circled.png │ │ │ │ │ ├── alert.png │ │ │ │ │ ├── android-add-contact.png │ │ │ │ │ ├── android-add.png │ │ │ │ │ ├── android-alarm.png │ │ │ │ │ ├── android-archive.png │ │ │ │ │ ├── android-arrow-back.png │ │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ │ ├── android-arrow-forward.png │ │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ │ ├── android-battery.png │ │ │ │ │ ├── android-book.png │ │ │ │ │ ├── android-calendar.png │ │ │ │ │ ├── android-call.png │ │ │ │ │ ├── android-camera.png │ │ │ │ │ ├── android-chat.png │ │ │ │ │ ├── android-checkmark.png │ │ │ │ │ ├── android-clock.png │ │ │ │ │ ├── android-close.png │ │ │ │ │ ├── android-contact.png │ │ │ │ │ ├── android-contacts.png │ │ │ │ │ ├── android-data.png │ │ │ │ │ ├── android-developer.png │ │ │ │ │ ├── android-display.png │ │ │ │ │ ├── android-download.png │ │ │ │ │ ├── android-drawer.png │ │ │ │ │ ├── android-dropdown.png │ │ │ │ │ ├── android-earth.png │ │ │ │ │ ├── android-folder.png │ │ │ │ │ ├── android-forums.png │ │ │ │ │ ├── android-friends.png │ │ │ │ │ ├── android-hand.png │ │ │ │ │ ├── android-image.png │ │ │ │ │ ├── android-inbox.png │ │ │ │ │ ├── android-information.png │ │ │ │ │ ├── android-keypad.png │ │ │ │ │ ├── android-lightbulb.png │ │ │ │ │ ├── android-locate.png │ │ │ │ │ ├── android-location.png │ │ │ │ │ ├── android-mail.png │ │ │ │ │ ├── android-microphone.png │ │ │ │ │ ├── android-mixer.png │ │ │ │ │ ├── android-more.png │ │ │ │ │ ├── android-note.png │ │ │ │ │ ├── android-playstore.png │ │ │ │ │ ├── android-printer.png │ │ │ │ │ ├── android-promotion.png │ │ │ │ │ ├── android-reminder.png │ │ │ │ │ ├── android-remove.png │ │ │ │ │ ├── android-search.png │ │ │ │ │ ├── android-send.png │ │ │ │ │ ├── android-settings.png │ │ │ │ │ ├── android-share.png │ │ │ │ │ ├── android-social-user.png │ │ │ │ │ ├── android-social.png │ │ │ │ │ ├── android-sort.png │ │ │ │ │ ├── android-stair-drawer.png │ │ │ │ │ ├── android-star.png │ │ │ │ │ ├── android-stopwatch.png │ │ │ │ │ ├── android-storage.png │ │ │ │ │ ├── android-system-back.png │ │ │ │ │ ├── android-system-home.png │ │ │ │ │ ├── android-system-windows.png │ │ │ │ │ ├── android-timer.png │ │ │ │ │ ├── android-trash.png │ │ │ │ │ ├── android-user-menu.png │ │ │ │ │ ├── android-volume.png │ │ │ │ │ ├── android-wifi.png │ │ │ │ │ ├── aperture.png │ │ │ │ │ ├── archive.png │ │ │ │ │ ├── arrow-down-a.png │ │ │ │ │ ├── arrow-down-b.png │ │ │ │ │ ├── arrow-down-c.png │ │ │ │ │ ├── arrow-expand.png │ │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ │ ├── arrow-left-a.png │ │ │ │ │ ├── arrow-left-b.png │ │ │ │ │ ├── arrow-left-c.png │ │ │ │ │ ├── arrow-move.png │ │ │ │ │ ├── arrow-resize.png │ │ │ │ │ ├── arrow-return-left.png │ │ │ │ │ ├── arrow-return-right.png │ │ │ │ │ ├── arrow-right-a.png │ │ │ │ │ ├── arrow-right-b.png │ │ │ │ │ ├── arrow-right-c.png │ │ │ │ │ ├── arrow-shrink.png │ │ │ │ │ ├── arrow-swap.png │ │ │ │ │ ├── arrow-up-a.png │ │ │ │ │ ├── arrow-up-b.png │ │ │ │ │ ├── arrow-up-c.png │ │ │ │ │ ├── asterisk.png │ │ │ │ │ ├── at.png │ │ │ │ │ ├── bag.png │ │ │ │ │ ├── battery-charging.png │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ ├── battery-full.png │ │ │ │ │ ├── battery-half.png │ │ │ │ │ ├── battery-low.png │ │ │ │ │ ├── beaker.png │ │ │ │ │ ├── beer.png │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ ├── bonfire.png │ │ │ │ │ ├── bookmark.png │ │ │ │ │ ├── briefcase.png │ │ │ │ │ ├── bug.png │ │ │ │ │ ├── calculator.png │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── camera.png │ │ │ │ │ ├── card.png │ │ │ │ │ ├── cash.png │ │ │ │ │ ├── chatbox-working.png │ │ │ │ │ ├── chatbox.png │ │ │ │ │ ├── chatboxes.png │ │ │ │ │ ├── chatbubble-working.png │ │ │ │ │ ├── chatbubble.png │ │ │ │ │ ├── chatbubbles.png │ │ │ │ │ ├── checkmark-circled.png │ │ │ │ │ ├── checkmark-round.png │ │ │ │ │ ├── checkmark.png │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ ├── chevron-left.png │ │ │ │ │ ├── chevron-right.png │ │ │ │ │ ├── chevron-up.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── clock.png │ │ │ │ │ ├── close-circled.png │ │ │ │ │ ├── close-round.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── closed-captioning.png │ │ │ │ │ ├── cloud.png │ │ │ │ │ ├── code-download.png │ │ │ │ │ ├── code-working.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── coffee.png │ │ │ │ │ ├── compass.png │ │ │ │ │ ├── compose.png │ │ │ │ │ ├── connection-bars.png │ │ │ │ │ ├── contrast.png │ │ │ │ │ ├── cube.png │ │ │ │ │ ├── disc.png │ │ │ │ │ ├── document-text.png │ │ │ │ │ ├── document.png │ │ │ │ │ ├── drag.png │ │ │ │ │ ├── earth.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── egg.png │ │ │ │ │ ├── eject.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── eye-disabled.png │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── female.png │ │ │ │ │ ├── filing.png │ │ │ │ │ ├── film-marker.png │ │ │ │ │ ├── fireball.png │ │ │ │ │ ├── flag.png │ │ │ │ │ ├── flame.png │ │ │ │ │ ├── flash-off.png │ │ │ │ │ ├── flash.png │ │ │ │ │ ├── flask.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── fork-repo.png │ │ │ │ │ ├── fork.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── funnel.png │ │ │ │ │ ├── game-controller-a.png │ │ │ │ │ ├── game-controller-b.png │ │ │ │ │ ├── gear-a.png │ │ │ │ │ ├── gear-b.png │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── hammer.png │ │ │ │ │ ├── happy.png │ │ │ │ │ ├── headphone.png │ │ │ │ │ ├── heart-broken.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── help-buoy.png │ │ │ │ │ ├── help-circled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icecream.png │ │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── images.png │ │ │ │ │ ├── information-circled.png │ │ │ │ │ ├── information.png │ │ │ │ │ ├── ionic.png │ │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ │ ├── ios7-alarm.png │ │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ │ ├── ios7-albums.png │ │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ │ ├── ios7-analytics.png │ │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ │ ├── ios7-at-outline.png │ │ │ │ │ ├── ios7-at.png │ │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ │ ├── ios7-barcode.png │ │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ │ ├── ios7-baseball.png │ │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ │ ├── ios7-basketball.png │ │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ │ ├── ios7-bell.png │ │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ │ ├── ios7-bolt.png │ │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ │ ├── ios7-box-outline.png │ │ │ │ │ ├── ios7-box.png │ │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ │ ├── ios7-briefcase.png │ │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ │ ├── ios7-browsers.png │ │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ │ ├── ios7-calculator.png │ │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ │ ├── ios7-calendar.png │ │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ │ ├── ios7-camera.png │ │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ │ ├── ios7-cart.png │ │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ │ ├── ios7-checkmark.png │ │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ │ ├── ios7-clock.png │ │ │ │ │ ├── ios7-close-empty.png │ │ │ │ │ ├── ios7-close-outline.png │ │ │ │ │ ├── ios7-close.png │ │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ │ ├── ios7-cloud.png │ │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ │ ├── ios7-cloudy.png │ │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ │ ├── ios7-cog.png │ │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ │ ├── ios7-compose.png │ │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ │ ├── ios7-contact.png │ │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ │ ├── ios7-copy.png │ │ │ │ │ ├── ios7-download-outline.png │ │ │ │ │ ├── ios7-download.png │ │ │ │ │ ├── ios7-drag.png │ │ │ │ │ ├── ios7-email-outline.png │ │ │ │ │ ├── ios7-email.png │ │ │ │ │ ├── ios7-expand.png │ │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ │ ├── ios7-eye.png │ │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ │ ├── ios7-fastforward.png │ │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ │ ├── ios7-filing.png │ │ │ │ │ ├── ios7-film-outline.png │ │ │ │ │ ├── ios7-film.png │ │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ │ ├── ios7-flag.png │ │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ │ ├── ios7-folder.png │ │ │ │ │ ├── ios7-football-outline.png │ │ │ │ │ ├── ios7-football.png │ │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ │ ├── ios7-gear.png │ │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ │ ├── ios7-glasses.png │ │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ │ ├── ios7-heart.png │ │ │ │ │ ├── ios7-help-empty.png │ │ │ │ │ ├── ios7-help-outline.png │ │ │ │ │ ├── ios7-help.png │ │ │ │ │ ├── ios7-home-outline.png │ │ │ │ │ ├── ios7-home.png │ │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ │ ├── ios7-infinite.png │ │ │ │ │ ├── ios7-information-empty.png │ │ │ │ │ ├── ios7-information-outline.png │ │ │ │ │ ├── ios7-information.png │ │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ │ ├── ios7-keypad.png │ │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ │ ├── ios7-location-outline.png │ │ │ │ │ ├── ios7-location.png │ │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ │ ├── ios7-locked.png │ │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ │ ├── ios7-loop.png │ │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ │ ├── ios7-medkit.png │ │ │ │ │ ├── ios7-mic-off.png │ │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ │ ├── ios7-mic.png │ │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ │ ├── ios7-minus.png │ │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ │ ├── ios7-monitor.png │ │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ │ ├── ios7-moon.png │ │ │ │ │ ├── ios7-more-outline.png │ │ │ │ │ ├── ios7-more.png │ │ │ │ │ ├── ios7-musical-note.png │ │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ │ ├── ios7-navigate.png │ │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ │ ├── ios7-paper.png │ │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ │ ├── ios7-paperplane.png │ │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ │ ├── ios7-pause.png │ │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ │ ├── ios7-paw.png │ │ │ │ │ ├── ios7-people-outline.png │ │ │ │ │ ├── ios7-people.png │ │ │ │ │ ├── ios7-person-outline.png │ │ │ │ │ ├── ios7-person.png │ │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ │ ├── ios7-personadd.png │ │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ │ ├── ios7-photos.png │ │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ │ ├── ios7-pie.png │ │ │ │ │ ├── ios7-play-outline.png │ │ │ │ │ ├── ios7-play.png │ │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ │ ├── ios7-plus.png │ │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ │ ├── ios7-pricetag.png │ │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ │ ├── ios7-pricetags.png │ │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ │ ├── ios7-printer.png │ │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ │ ├── ios7-pulse.png │ │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ │ ├── ios7-rainy.png │ │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ │ ├── ios7-recording.png │ │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ │ ├── ios7-redo.png │ │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ │ ├── ios7-refresh.png │ │ │ │ │ ├── ios7-reload.png │ │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ │ ├── ios7-rewind.png │ │ │ │ │ ├── ios7-search-strong.png │ │ │ │ │ ├── ios7-search.png │ │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ │ ├── ios7-settings.png │ │ │ │ │ ├── ios7-shrink.png │ │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ │ ├── ios7-skipforward.png │ │ │ │ │ ├── ios7-snowy.png │ │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ │ ├── ios7-speedometer.png │ │ │ │ │ ├── ios7-star-half.png │ │ │ │ │ ├── ios7-star-outline.png │ │ │ │ │ ├── ios7-star.png │ │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ │ ├── ios7-sunny.png │ │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ │ ├── ios7-telephone.png │ │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ │ ├── ios7-tennisball.png │ │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ │ ├── ios7-time-outline.png │ │ │ │ │ ├── ios7-time.png │ │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ │ ├── ios7-timer.png │ │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ │ ├── ios7-toggle.png │ │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ │ ├── ios7-trash.png │ │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ │ ├── ios7-undo.png │ │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ │ ├── ios7-unlocked.png │ │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ │ ├── ios7-upload.png │ │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ │ ├── ios7-videocam.png │ │ │ │ │ ├── ios7-volume-high.png │ │ │ │ │ ├── ios7-volume-low.png │ │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ │ ├── ios7-wineglass.png │ │ │ │ │ ├── ios7-world-outline.png │ │ │ │ │ ├── ios7-world.png │ │ │ │ │ ├── ipad.png │ │ │ │ │ ├── iphone.png │ │ │ │ │ ├── ipod.png │ │ │ │ │ ├── jet.png │ │ │ │ │ ├── key.png │ │ │ │ │ ├── knife.png │ │ │ │ │ ├── laptop.png │ │ │ │ │ ├── leaf.png │ │ │ │ │ ├── levels.png │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── load-a.png │ │ │ │ │ ├── load-b.png │ │ │ │ │ ├── load-c.png │ │ │ │ │ ├── load-d.png │ │ │ │ │ ├── location.png │ │ │ │ │ ├── locked.png │ │ │ │ │ ├── log-in.png │ │ │ │ │ ├── log-out.png │ │ │ │ │ ├── loop.png │ │ │ │ │ ├── magnet.png │ │ │ │ │ ├── male.png │ │ │ │ │ ├── man.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── medkit.png │ │ │ │ │ ├── merge.png │ │ │ │ │ ├── mic-a.png │ │ │ │ │ ├── mic-b.png │ │ │ │ │ ├── mic-c.png │ │ │ │ │ ├── minus-circled.png │ │ │ │ │ ├── minus-round.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── model-s.png │ │ │ │ │ ├── monitor.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── mouse.png │ │ │ │ │ ├── music-note.png │ │ │ │ │ ├── navicon-round.png │ │ │ │ │ ├── navicon.png │ │ │ │ │ ├── navigate.png │ │ │ │ │ ├── network.png │ │ │ │ │ ├── no-smoking.png │ │ │ │ │ ├── nuclear.png │ │ │ │ │ ├── outlet.png │ │ │ │ │ ├── paper-airplane.png │ │ │ │ │ ├── paperclip.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── person-add.png │ │ │ │ │ ├── person-stalker.png │ │ │ │ │ ├── person.png │ │ │ │ │ ├── pie-graph.png │ │ │ │ │ ├── pin.png │ │ │ │ │ ├── pinpoint.png │ │ │ │ │ ├── pizza.png │ │ │ │ │ ├── plane.png │ │ │ │ │ ├── planet.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── playstation.png │ │ │ │ │ ├── plus-circled.png │ │ │ │ │ ├── plus-round.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── podium.png │ │ │ │ │ ├── pound.png │ │ │ │ │ ├── power.png │ │ │ │ │ ├── pricetag.png │ │ │ │ │ ├── pricetags.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── pull-request.png │ │ │ │ │ ├── qr-scanner.png │ │ │ │ │ ├── quote.png │ │ │ │ │ ├── radio-waves.png │ │ │ │ │ ├── record.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── reply-all.png │ │ │ │ │ ├── reply.png │ │ │ │ │ ├── ribbon-a.png │ │ │ │ │ ├── ribbon-b.png │ │ │ │ │ ├── sad.png │ │ │ │ │ ├── scissors.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── share.png │ │ │ │ │ ├── shuffle.png │ │ │ │ │ ├── skip-backward.png │ │ │ │ │ ├── skip-forward.png │ │ │ │ │ ├── social-android-outline.png │ │ │ │ │ ├── social-android.png │ │ │ │ │ ├── social-apple-outline.png │ │ │ │ │ ├── social-apple.png │ │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ │ ├── social-bitcoin.png │ │ │ │ │ ├── social-buffer-outline.png │ │ │ │ │ ├── social-buffer.png │ │ │ │ │ ├── social-designernews-outline.png │ │ │ │ │ ├── social-designernews.png │ │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ │ ├── social-dribbble.png │ │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ │ ├── social-dropbox.png │ │ │ │ │ ├── social-facebook-outline.png │ │ │ │ │ ├── social-facebook.png │ │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ │ ├── social-foursquare.png │ │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ │ ├── social-github-outline.png │ │ │ │ │ ├── social-github.png │ │ │ │ │ ├── social-google-outline.png │ │ │ │ │ ├── social-google.png │ │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ │ ├── social-googleplus.png │ │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ │ ├── social-hackernews.png │ │ │ │ │ ├── social-instagram-outline.png │ │ │ │ │ ├── social-instagram.png │ │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ │ ├── social-linkedin.png │ │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ │ ├── social-pinterest.png │ │ │ │ │ ├── social-reddit-outline.png │ │ │ │ │ ├── social-reddit.png │ │ │ │ │ ├── social-rss-outline.png │ │ │ │ │ ├── social-rss.png │ │ │ │ │ ├── social-skype-outline.png │ │ │ │ │ ├── social-skype.png │ │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ │ ├── social-tumblr.png │ │ │ │ │ ├── social-tux.png │ │ │ │ │ ├── social-twitter-outline.png │ │ │ │ │ ├── social-twitter.png │ │ │ │ │ ├── social-usd-outline.png │ │ │ │ │ ├── social-usd.png │ │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ │ ├── social-vimeo.png │ │ │ │ │ ├── social-windows-outline.png │ │ │ │ │ ├── social-windows.png │ │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ │ ├── social-wordpress.png │ │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ │ ├── social-yahoo.png │ │ │ │ │ ├── social-youtube-outline.png │ │ │ │ │ ├── social-youtube.png │ │ │ │ │ ├── speakerphone.png │ │ │ │ │ ├── speedometer.png │ │ │ │ │ ├── spoon.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── stats-bars.png │ │ │ │ │ ├── steam.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── thermometer.png │ │ │ │ │ ├── thumbsdown.png │ │ │ │ │ ├── thumbsup.png │ │ │ │ │ ├── toggle-filled.png │ │ │ │ │ ├── toggle.png │ │ │ │ │ ├── trash-a.png │ │ │ │ │ ├── trash-b.png │ │ │ │ │ ├── trophy.png │ │ │ │ │ ├── umbrella.png │ │ │ │ │ ├── university.png │ │ │ │ │ ├── unlocked.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── usb.png │ │ │ │ │ ├── videocamera.png │ │ │ │ │ ├── volume-high.png │ │ │ │ │ ├── volume-low.png │ │ │ │ │ ├── volume-medium.png │ │ │ │ │ ├── volume-mute.png │ │ │ │ │ ├── wand.png │ │ │ │ │ ├── waterdrop.png │ │ │ │ │ ├── wifi.png │ │ │ │ │ ├── wineglass.png │ │ │ │ │ ├── woman.png │ │ │ │ │ ├── wrench.png │ │ │ │ │ └── xbox.png │ │ │ ├── scss │ │ │ │ ├── _ionicons-font.scss │ │ │ │ ├── _ionicons-icons.scss │ │ │ │ ├── _ionicons-variables.scss │ │ │ │ └── ionicons.scss │ │ │ └── src │ │ │ │ ├── alert-circled.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── android-add-circle.svg │ │ │ │ ├── android-add.svg │ │ │ │ ├── android-alarm-clock.svg │ │ │ │ ├── android-alert.svg │ │ │ │ ├── android-apps.svg │ │ │ │ ├── android-archive.svg │ │ │ │ ├── android-arrow-back.svg │ │ │ │ ├── android-arrow-down.svg │ │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ │ ├── android-arrow-dropdown.svg │ │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ │ ├── android-arrow-dropleft.svg │ │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ │ ├── android-arrow-dropright.svg │ │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ │ ├── android-arrow-dropup.svg │ │ │ │ ├── android-arrow-forward.svg │ │ │ │ ├── android-arrow-up.svg │ │ │ │ ├── android-attach.svg │ │ │ │ ├── android-bar.svg │ │ │ │ ├── android-bicycle.svg │ │ │ │ ├── android-boat.svg │ │ │ │ ├── android-bookmark.svg │ │ │ │ ├── android-bulb.svg │ │ │ │ ├── android-bus.svg │ │ │ │ ├── android-calendar.svg │ │ │ │ ├── android-call.svg │ │ │ │ ├── android-camera.svg │ │ │ │ ├── android-cancel.svg │ │ │ │ ├── android-car.svg │ │ │ │ ├── android-cart.svg │ │ │ │ ├── android-chat.svg │ │ │ │ ├── android-checkbox-blank.svg │ │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ │ ├── android-checkbox-outline.svg │ │ │ │ ├── android-checkbox.svg │ │ │ │ ├── android-checkmark-circle.svg │ │ │ │ ├── android-clipboard.svg │ │ │ │ ├── android-close.svg │ │ │ │ ├── android-cloud-circle.svg │ │ │ │ ├── android-cloud-done.svg │ │ │ │ ├── android-cloud-outline.svg │ │ │ │ ├── android-cloud.svg │ │ │ │ ├── android-color-palette.svg │ │ │ │ ├── android-compass.svg │ │ │ │ ├── android-contact.svg │ │ │ │ ├── android-contacts.svg │ │ │ │ ├── android-contract.svg │ │ │ │ ├── android-create.svg │ │ │ │ ├── android-delete.svg │ │ │ │ ├── android-desktop.svg │ │ │ │ ├── android-document.svg │ │ │ │ ├── android-done-all.svg │ │ │ │ ├── android-done.svg │ │ │ │ ├── android-download.svg │ │ │ │ ├── android-drafts.svg │ │ │ │ ├── android-exit.svg │ │ │ │ ├── android-expand.svg │ │ │ │ ├── android-favorite-outline.svg │ │ │ │ ├── android-favorite.svg │ │ │ │ ├── android-film.svg │ │ │ │ ├── android-folder-open.svg │ │ │ │ ├── android-folder.svg │ │ │ │ ├── android-funnel.svg │ │ │ │ ├── android-globe.svg │ │ │ │ ├── android-hand.svg │ │ │ │ ├── android-hangout.svg │ │ │ │ ├── android-happy.svg │ │ │ │ ├── android-home.svg │ │ │ │ ├── android-image.svg │ │ │ │ ├── android-laptop.svg │ │ │ │ ├── android-list.svg │ │ │ │ ├── android-locate.svg │ │ │ │ ├── android-lock.svg │ │ │ │ ├── android-mail.svg │ │ │ │ ├── android-map.svg │ │ │ │ ├── android-menu.svg │ │ │ │ ├── android-microphone-off.svg │ │ │ │ ├── android-microphone.svg │ │ │ │ ├── android-more-horizontal.svg │ │ │ │ ├── android-more-vertical.svg │ │ │ │ ├── android-navigate.svg │ │ │ │ ├── android-notifications-none.svg │ │ │ │ ├── android-notifications-off.svg │ │ │ │ ├── android-notifications.svg │ │ │ │ ├── android-open.svg │ │ │ │ ├── android-options.svg │ │ │ │ ├── android-people.svg │ │ │ │ ├── android-person-add.svg │ │ │ │ ├── android-person.svg │ │ │ │ ├── android-phone-landscape.svg │ │ │ │ ├── android-phone-portrait.svg │ │ │ │ ├── android-pin.svg │ │ │ │ ├── android-plane.svg │ │ │ │ ├── android-playstore.svg │ │ │ │ ├── android-print.svg │ │ │ │ ├── android-radio-button-off.svg │ │ │ │ ├── android-radio-button-on.svg │ │ │ │ ├── android-refresh.svg │ │ │ │ ├── android-remove-circle.svg │ │ │ │ ├── android-remove.svg │ │ │ │ ├── android-restaurant.svg │ │ │ │ ├── android-sad.svg │ │ │ │ ├── android-search.svg │ │ │ │ ├── android-send.svg │ │ │ │ ├── android-settings.svg │ │ │ │ ├── android-share-alt.svg │ │ │ │ ├── android-share.svg │ │ │ │ ├── android-star-half.svg │ │ │ │ ├── android-star-outline.svg │ │ │ │ ├── android-star.svg │ │ │ │ ├── android-stopwatch.svg │ │ │ │ ├── android-subway.svg │ │ │ │ ├── android-sunny.svg │ │ │ │ ├── android-sync.svg │ │ │ │ ├── android-textsms.svg │ │ │ │ ├── android-time.svg │ │ │ │ ├── android-train.svg │ │ │ │ ├── android-unlock.svg │ │ │ │ ├── android-upload.svg │ │ │ │ ├── android-volume-down.svg │ │ │ │ ├── android-volume-mute.svg │ │ │ │ ├── android-volume-off.svg │ │ │ │ ├── android-volume-up.svg │ │ │ │ ├── android-walk.svg │ │ │ │ ├── android-warning.svg │ │ │ │ ├── android-watch.svg │ │ │ │ ├── android-wifi.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-down-a.svg │ │ │ │ ├── arrow-down-b.svg │ │ │ │ ├── arrow-down-c.svg │ │ │ │ ├── arrow-expand.svg │ │ │ │ ├── arrow-graph-down-left.svg │ │ │ │ ├── arrow-graph-down-right.svg │ │ │ │ ├── arrow-graph-up-left.svg │ │ │ │ ├── arrow-graph-up-right.svg │ │ │ │ ├── arrow-left-a.svg │ │ │ │ ├── arrow-left-b.svg │ │ │ │ ├── arrow-left-c.svg │ │ │ │ ├── arrow-move.svg │ │ │ │ ├── arrow-resize.svg │ │ │ │ ├── arrow-return-left.svg │ │ │ │ ├── arrow-return-right.svg │ │ │ │ ├── arrow-right-a.svg │ │ │ │ ├── arrow-right-b.svg │ │ │ │ ├── arrow-right-c.svg │ │ │ │ ├── arrow-shrink.svg │ │ │ │ ├── arrow-swap.svg │ │ │ │ ├── arrow-up-a.svg │ │ │ │ ├── arrow-up-b.svg │ │ │ │ ├── arrow-up-c.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── backspace-outline.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-low.svg │ │ │ │ ├── beaker.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bowtie.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── card.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── chatbox-working.svg │ │ │ │ ├── chatbox.svg │ │ │ │ ├── chatboxes.svg │ │ │ │ ├── chatbubble-working.svg │ │ │ │ ├── chatbubble.svg │ │ │ │ ├── chatbubbles.svg │ │ │ │ ├── checkmark-circled.svg │ │ │ │ ├── checkmark-round.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── close-circled.svg │ │ │ │ ├── close-round.svg │ │ │ │ ├── close.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── code-download.svg │ │ │ │ ├── code-working.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compose.svg │ │ │ │ ├── connection-bars.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── document-text.svg │ │ │ │ ├── document.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── earth.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── email-unread.svg │ │ │ │ ├── email.svg │ │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ │ ├── erlenmeyer-flask.svg │ │ │ │ ├── eye-disabled.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── female.svg │ │ │ │ ├── filing.svg │ │ │ │ ├── film-marker.svg │ │ │ │ ├── fireball.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flame.svg │ │ │ │ ├── flash-off.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── fork-repo.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── gear-a.svg │ │ │ │ ├── gear-b.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── happy-outline.svg │ │ │ │ ├── happy.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-buoy.svg │ │ │ │ ├── help-circled.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home.svg │ │ │ │ ├── icecream.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── information-circled.svg │ │ │ │ ├── information.svg │ │ │ │ ├── ionic.svg │ │ │ │ ├── ios-alarm-outline.svg │ │ │ │ ├── ios-alarm.svg │ │ │ │ ├── ios-albums-outline.svg │ │ │ │ ├── ios-albums.svg │ │ │ │ ├── ios-americanfootball-outline.svg │ │ │ │ ├── ios-americanfootball.svg │ │ │ │ ├── ios-analytics-outline.svg │ │ │ │ ├── ios-analytics.svg │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ ├── ios-arrow-left.svg │ │ │ │ ├── ios-arrow-right.svg │ │ │ │ ├── ios-arrow-thin-down.svg │ │ │ │ ├── ios-arrow-thin-left.svg │ │ │ │ ├── ios-arrow-thin-right.svg │ │ │ │ ├── ios-arrow-thin-up.svg │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ ├── ios-at-outline.svg │ │ │ │ ├── ios-at.svg │ │ │ │ ├── ios-barcode-outline.svg │ │ │ │ ├── ios-barcode.svg │ │ │ │ ├── ios-baseball-outline.svg │ │ │ │ ├── ios-baseball.svg │ │ │ │ ├── ios-basketball-outline.svg │ │ │ │ ├── ios-basketball.svg │ │ │ │ ├── ios-bell-outline.svg │ │ │ │ ├── ios-bell.svg │ │ │ │ ├── ios-body-outline.svg │ │ │ │ ├── ios-body.svg │ │ │ │ ├── ios-bolt-outline.svg │ │ │ │ ├── ios-bolt.svg │ │ │ │ ├── ios-book-outline.svg │ │ │ │ ├── ios-book.svg │ │ │ │ ├── ios-bookmarks-outline.svg │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ ├── ios-box-outline.svg │ │ │ │ ├── ios-box.svg │ │ │ │ ├── ios-briefcase-outline.svg │ │ │ │ ├── ios-briefcase.svg │ │ │ │ ├── ios-browsers-outline.svg │ │ │ │ ├── ios-browsers.svg │ │ │ │ ├── ios-calculator-outline.svg │ │ │ │ ├── ios-calculator.svg │ │ │ │ ├── ios-calendar-outline.svg │ │ │ │ ├── ios-calendar.svg │ │ │ │ ├── ios-camera-outline.svg │ │ │ │ ├── ios-camera.svg │ │ │ │ ├── ios-cart-outline.svg │ │ │ │ ├── ios-cart.svg │ │ │ │ ├── ios-chatboxes-outline.svg │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ ├── ios-chatbubble-outline.svg │ │ │ │ ├── ios-chatbubble.svg │ │ │ │ ├── ios-checkmark-empty.svg │ │ │ │ ├── ios-checkmark-outline.svg │ │ │ │ ├── ios-checkmark.svg │ │ │ │ ├── ios-circle-filled.svg │ │ │ │ ├── ios-circle-outline.svg │ │ │ │ ├── ios-clock-outline.svg │ │ │ │ ├── ios-clock.svg │ │ │ │ ├── ios-close-empty.svg │ │ │ │ ├── ios-close-outline.svg │ │ │ │ ├── ios-close.svg │ │ │ │ ├── ios-cloud-download-outline.svg │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ ├── ios-cloud.svg │ │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ ├── ios-cloudy-outline.svg │ │ │ │ ├── ios-cloudy.svg │ │ │ │ ├── ios-cog-outline.svg │ │ │ │ ├── ios-cog.svg │ │ │ │ ├── ios-color-filter-outline.svg │ │ │ │ ├── ios-color-filter.svg │ │ │ │ ├── ios-color-wand-outline.svg │ │ │ │ ├── ios-color-wand.svg │ │ │ │ ├── ios-compose-outline.svg │ │ │ │ ├── ios-compose.svg │ │ │ │ ├── ios-contact-outline.svg │ │ │ │ ├── ios-contact.svg │ │ │ │ ├── ios-copy-outline.svg │ │ │ │ ├── ios-copy.svg │ │ │ │ ├── ios-crop-strong.svg │ │ │ │ ├── ios-crop.svg │ │ │ │ ├── ios-download-outline.svg │ │ │ │ ├── ios-download.svg │ │ │ │ ├── ios-drag.svg │ │ │ │ ├── ios-email-outline.svg │ │ │ │ ├── ios-email.svg │ │ │ │ ├── ios-eye-outline.svg │ │ │ │ ├── ios-eye.svg │ │ │ │ ├── ios-fastforward-outline.svg │ │ │ │ ├── ios-fastforward.svg │ │ │ │ ├── ios-filing-outline.svg │ │ │ │ ├── ios-filing.svg │ │ │ │ ├── ios-film-outline.svg │ │ │ │ ├── ios-film.svg │ │ │ │ ├── ios-flag-outline.svg │ │ │ │ ├── ios-flag.svg │ │ │ │ ├── ios-flame-outline.svg │ │ │ │ ├── ios-flame.svg │ │ │ │ ├── ios-flask-outline.svg │ │ │ │ ├── ios-flask.svg │ │ │ │ ├── ios-flower-outline.svg │ │ │ │ ├── ios-flower.svg │ │ │ │ ├── ios-folder-outline.svg │ │ │ │ ├── ios-folder.svg │ │ │ │ ├── ios-football-outline.svg │ │ │ │ ├── ios-football.svg │ │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ │ ├── ios-game-controller-a.svg │ │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ │ ├── ios-game-controller-b.svg │ │ │ │ ├── ios-gear-outline.svg │ │ │ │ ├── ios-gear.svg │ │ │ │ ├── ios-glasses-outline.svg │ │ │ │ ├── ios-glasses.svg │ │ │ │ ├── ios-grid-view-outline.svg │ │ │ │ ├── ios-grid-view.svg │ │ │ │ ├── ios-heart-outline.svg │ │ │ │ ├── ios-heart.svg │ │ │ │ ├── ios-help-empty.svg │ │ │ │ ├── ios-help-outline.svg │ │ │ │ ├── ios-help.svg │ │ │ │ ├── ios-home-outline.svg │ │ │ │ ├── ios-home.svg │ │ │ │ ├── ios-infinite-outline.svg │ │ │ │ ├── ios-infinite.svg │ │ │ │ ├── ios-information-empty.svg │ │ │ │ ├── ios-information-outline.svg │ │ │ │ ├── ios-information.svg │ │ │ │ ├── ios-ionic-outline.svg │ │ │ │ ├── ios-keypad-outline.svg │ │ │ │ ├── ios-keypad.svg │ │ │ │ ├── ios-lightbulb-outline.svg │ │ │ │ ├── ios-lightbulb.svg │ │ │ │ ├── ios-list-outline.svg │ │ │ │ ├── ios-list.svg │ │ │ │ ├── ios-location-outline.svg │ │ │ │ ├── ios-location.svg │ │ │ │ ├── ios-locked-outline.svg │ │ │ │ ├── ios-locked.svg │ │ │ │ ├── ios-loop-strong.svg │ │ │ │ ├── ios-loop.svg │ │ │ │ ├── ios-medical-outline.svg │ │ │ │ ├── ios-medical.svg │ │ │ │ ├── ios-medkit-outline.svg │ │ │ │ ├── ios-medkit.svg │ │ │ │ ├── ios-mic-off.svg │ │ │ │ ├── ios-mic-outline.svg │ │ │ │ ├── ios-mic.svg │ │ │ │ ├── ios-minus-empty.svg │ │ │ │ ├── ios-minus-outline.svg │ │ │ │ ├── ios-minus.svg │ │ │ │ ├── ios-monitor-outline.svg │ │ │ │ ├── ios-monitor.svg │ │ │ │ ├── ios-moon-outline.svg │ │ │ │ ├── ios-moon.svg │ │ │ │ ├── ios-more-outline.svg │ │ │ │ ├── ios-more.svg │ │ │ │ ├── ios-musical-note.svg │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ ├── ios-navigate-outline.svg │ │ │ │ ├── ios-navigate.svg │ │ │ │ ├── ios-nutrition-outline.svg │ │ │ │ ├── ios-nutrition.svg │ │ │ │ ├── ios-paper-outline.svg │ │ │ │ ├── ios-paper.svg │ │ │ │ ├── ios-paperplane-outline.svg │ │ │ │ ├── ios-paperplane.svg │ │ │ │ ├── ios-partlysunny-outline.svg │ │ │ │ ├── ios-partlysunny.svg │ │ │ │ ├── ios-pause-outline.svg │ │ │ │ ├── ios-pause.svg │ │ │ │ ├── ios-paw-outline.svg │ │ │ │ ├── ios-paw.svg │ │ │ │ ├── ios-people-outline.svg │ │ │ │ ├── ios-people.svg │ │ │ │ ├── ios-person-outline.svg │ │ │ │ ├── ios-person.svg │ │ │ │ ├── ios-personadd-outline.svg │ │ │ │ ├── ios-personadd.svg │ │ │ │ ├── ios-photos-outline.svg │ │ │ │ ├── ios-photos.svg │ │ │ │ ├── ios-pie-outline.svg │ │ │ │ ├── ios-pie.svg │ │ │ │ ├── ios-pint-outline.svg │ │ │ │ ├── ios-pint.svg │ │ │ │ ├── ios-play-outline.svg │ │ │ │ ├── ios-play.svg │ │ │ │ ├── ios-plus-empty.svg │ │ │ │ ├── ios-plus-outline.svg │ │ │ │ ├── ios-plus.svg │ │ │ │ ├── ios-pricetag-outline.svg │ │ │ │ ├── ios-pricetag.svg │ │ │ │ ├── ios-pricetags-outline.svg │ │ │ │ ├── ios-pricetags.svg │ │ │ │ ├── ios-printer-outline.svg │ │ │ │ ├── ios-printer.svg │ │ │ │ ├── ios-pulse-strong.svg │ │ │ │ ├── ios-pulse.svg │ │ │ │ ├── ios-rainy-outline.svg │ │ │ │ ├── ios-rainy.svg │ │ │ │ ├── ios-recording-outline.svg │ │ │ │ ├── ios-recording.svg │ │ │ │ ├── ios-redo-outline.svg │ │ │ │ ├── ios-redo.svg │ │ │ │ ├── ios-refresh-empty.svg │ │ │ │ ├── ios-refresh-outline.svg │ │ │ │ ├── ios-refresh.svg │ │ │ │ ├── ios-reload.svg │ │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ ├── ios-rewind-outline.svg │ │ │ │ ├── ios-rewind.svg │ │ │ │ ├── ios-rose-outline.svg │ │ │ │ ├── ios-rose.svg │ │ │ │ ├── ios-search-strong.svg │ │ │ │ ├── ios-search.svg │ │ │ │ ├── ios-settings-strong.svg │ │ │ │ ├── ios-settings.svg │ │ │ │ ├── ios-shuffle-strong.svg │ │ │ │ ├── ios-shuffle.svg │ │ │ │ ├── ios-skipbackward-outline.svg │ │ │ │ ├── ios-skipbackward.svg │ │ │ │ ├── ios-skipforward-outline.svg │ │ │ │ ├── ios-skipforward.svg │ │ │ │ ├── ios-snowy.svg │ │ │ │ ├── ios-speedometer-outline.svg │ │ │ │ ├── ios-speedometer.svg │ │ │ │ ├── ios-star-half.svg │ │ │ │ ├── ios-star-outline.svg │ │ │ │ ├── ios-star.svg │ │ │ │ ├── ios-stopwatch-outline.svg │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ ├── ios-sunny-outline.svg │ │ │ │ ├── ios-sunny.svg │ │ │ │ ├── ios-telephone-outline.svg │ │ │ │ ├── ios-telephone.svg │ │ │ │ ├── ios-tennisball-outline.svg │ │ │ │ ├── ios-tennisball.svg │ │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ ├── ios-time-outline.svg │ │ │ │ ├── ios-time.svg │ │ │ │ ├── ios-timer-outline.svg │ │ │ │ ├── ios-timer.svg │ │ │ │ ├── ios-toggle-outline.svg │ │ │ │ ├── ios-toggle.svg │ │ │ │ ├── ios-trash-outline.svg │ │ │ │ ├── ios-trash.svg │ │ │ │ ├── ios-undo-outline.svg │ │ │ │ ├── ios-undo.svg │ │ │ │ ├── ios-unlocked-outline.svg │ │ │ │ ├── ios-unlocked.svg │ │ │ │ ├── ios-upload-outline.svg │ │ │ │ ├── ios-upload.svg │ │ │ │ ├── ios-videocam-outline.svg │ │ │ │ ├── ios-videocam.svg │ │ │ │ ├── ios-volume-high.svg │ │ │ │ ├── ios-volume-low.svg │ │ │ │ ├── ios-wineglass-outline.svg │ │ │ │ ├── ios-wineglass.svg │ │ │ │ ├── ios-world-outline.svg │ │ │ │ ├── ios-world.svg │ │ │ │ ├── ipad.svg │ │ │ │ ├── iphone.svg │ │ │ │ ├── ipod.svg │ │ │ │ ├── jet.svg │ │ │ │ ├── key.svg │ │ │ │ ├── knife.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── levels.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── load-a.svg │ │ │ │ ├── load-b.svg │ │ │ │ ├── load-c.svg │ │ │ │ ├── load-d.svg │ │ │ │ ├── location.svg │ │ │ │ ├── lock-combination.svg │ │ │ │ ├── locked.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── male.svg │ │ │ │ ├── man.svg │ │ │ │ ├── map.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── merge.svg │ │ │ │ ├── mic-a.svg │ │ │ │ ├── mic-b.svg │ │ │ │ ├── mic-c.svg │ │ │ │ ├── minus-circled.svg │ │ │ │ ├── minus-round.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── model-s.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── more.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── music-note.svg │ │ │ │ ├── navicon-round.svg │ │ │ │ ├── navicon.svg │ │ │ │ ├── navigate.svg │ │ │ │ ├── network.svg │ │ │ │ ├── no-smoking.svg │ │ │ │ ├── nuclear.svg │ │ │ │ ├── outlet.svg │ │ │ │ ├── paintbrush.svg │ │ │ │ ├── paintbucket.svg │ │ │ │ ├── paper-airplane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-stalker.svg │ │ │ │ ├── person.svg │ │ │ │ ├── pie-graph.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pinpoint.svg │ │ │ │ ├── pizza.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── plus-circled.svg │ │ │ │ ├── plus-round.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podium.svg │ │ │ │ ├── pound.svg │ │ │ │ ├── power.svg │ │ │ │ ├── pricetag.svg │ │ │ │ ├── pricetags.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── pull-request.svg │ │ │ │ ├── qr-scanner.svg │ │ │ │ ├── quote.svg │ │ │ │ ├── radio-waves.svg │ │ │ │ ├── record.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── ribbon-a.svg │ │ │ │ ├── ribbon-b.svg │ │ │ │ ├── sad-outline.svg │ │ │ │ ├── sad.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── skip-backward.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── social-android-outline.svg │ │ │ │ ├── social-android.svg │ │ │ │ ├── social-angular-outline.svg │ │ │ │ ├── social-angular.svg │ │ │ │ ├── social-apple-outline.svg │ │ │ │ ├── social-apple.svg │ │ │ │ ├── social-bitcoin-outline.svg │ │ │ │ ├── social-bitcoin.svg │ │ │ │ ├── social-buffer-outline.svg │ │ │ │ ├── social-buffer.svg │ │ │ │ ├── social-chrome-outline.svg │ │ │ │ ├── social-chrome.svg │ │ │ │ ├── social-codepen-outline.svg │ │ │ │ ├── social-codepen.svg │ │ │ │ ├── social-css3-outline.svg │ │ │ │ ├── social-css3.svg │ │ │ │ ├── social-designernews-outline.svg │ │ │ │ ├── social-designernews.svg │ │ │ │ ├── social-dribbble-outline.svg │ │ │ │ ├── social-dribbble.svg │ │ │ │ ├── social-dropbox-outline.svg │ │ │ │ ├── social-dropbox.svg │ │ │ │ ├── social-euro-outline.svg │ │ │ │ ├── social-euro.svg │ │ │ │ ├── social-facebook-outline.svg │ │ │ │ ├── social-facebook.svg │ │ │ │ ├── social-foursquare-outline.svg │ │ │ │ ├── social-foursquare.svg │ │ │ │ ├── social-freebsd-devil.svg │ │ │ │ ├── social-github-outline.svg │ │ │ │ ├── social-github.svg │ │ │ │ ├── social-google-outline.svg │ │ │ │ ├── social-google.svg │ │ │ │ ├── social-googleplus-outline.svg │ │ │ │ ├── social-googleplus.svg │ │ │ │ ├── social-hackernews-outline.svg │ │ │ │ ├── social-hackernews.svg │ │ │ │ ├── social-html5-outline.svg │ │ │ │ ├── social-html5.svg │ │ │ │ ├── social-instagram-outline.svg │ │ │ │ ├── social-instagram.svg │ │ │ │ ├── social-javascript-outline.svg │ │ │ │ ├── social-javascript.svg │ │ │ │ ├── social-linkedin-outline.svg │ │ │ │ ├── social-linkedin.svg │ │ │ │ ├── social-markdown.svg │ │ │ │ ├── social-nodejs.svg │ │ │ │ ├── social-octocat.svg │ │ │ │ ├── social-pinterest-outline.svg │ │ │ │ ├── social-pinterest.svg │ │ │ │ ├── social-python.svg │ │ │ │ ├── social-reddit-outline.svg │ │ │ │ ├── social-reddit.svg │ │ │ │ ├── social-rss-outline.svg │ │ │ │ ├── social-rss.svg │ │ │ │ ├── social-sass.svg │ │ │ │ ├── social-skype-outline.svg │ │ │ │ ├── social-skype.svg │ │ │ │ ├── social-snapchat-outline.svg │ │ │ │ ├── social-snapchat.svg │ │ │ │ ├── social-tumblr-outline.svg │ │ │ │ ├── social-tumblr.svg │ │ │ │ ├── social-tux.svg │ │ │ │ ├── social-twitch-outline.svg │ │ │ │ ├── social-twitch.svg │ │ │ │ ├── social-twitter-outline.svg │ │ │ │ ├── social-twitter.svg │ │ │ │ ├── social-usd-outline.svg │ │ │ │ ├── social-usd.svg │ │ │ │ ├── social-vimeo-outline.svg │ │ │ │ ├── social-vimeo.svg │ │ │ │ ├── social-whatsapp-outline.svg │ │ │ │ ├── social-whatsapp.svg │ │ │ │ ├── social-windows-outline.svg │ │ │ │ ├── social-windows.svg │ │ │ │ ├── social-wordpress-outline.svg │ │ │ │ ├── social-wordpress.svg │ │ │ │ ├── social-yahoo-outline.svg │ │ │ │ ├── social-yahoo.svg │ │ │ │ ├── social-yen-outline.svg │ │ │ │ ├── social-yen.svg │ │ │ │ ├── social-youtube-outline.svg │ │ │ │ ├── social-youtube.svg │ │ │ │ ├── soup-can-outline.svg │ │ │ │ ├── soup-can.svg │ │ │ │ ├── speakerphone.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── spoon.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-bars.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbsdown.svg │ │ │ │ ├── thumbsup.svg │ │ │ │ ├── toggle-filled.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-a.svg │ │ │ │ ├── trash-b.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tshirt-outline.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlocked.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── videocamera.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-medium.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── wand.svg │ │ │ │ ├── waterdrop.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wineglass.svg │ │ │ │ ├── woman.svg │ │ │ │ ├── wrench.svg │ │ │ │ └── xbox.svg │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Gruntfile.js │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ │ ├── .stylelintrc │ │ │ │ ├── browsers.js │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ ├── change-version.js │ │ │ │ ├── configBridge.json │ │ │ │ ├── generate-sri.js │ │ │ │ └── karma.conf.js │ │ │ ├── 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 │ │ │ │ ├── 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-lock.json │ │ │ ├── package.js │ │ │ └── package.json │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .npmignore │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── jquery-cookie │ │ │ ├── .jshintrc │ │ │ ├── .tm_properties │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── cookie.jquery.json │ │ │ ├── jquery.cookie.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── malformed_cookie.html │ │ │ │ ├── server.js │ │ │ │ └── tests.js │ │ ├── jquery-easyui │ │ │ ├── changelog.txt │ │ │ ├── demo-mobile │ │ │ │ ├── accordion │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── basic.html │ │ │ │ │ └── header.html │ │ │ │ ├── animation │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fade.html │ │ │ │ │ ├── pop.html │ │ │ │ │ └── slide.html │ │ │ │ ├── badge │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── list.html │ │ │ │ │ └── tabs.html │ │ │ │ ├── button │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── style.html │ │ │ │ │ └── switch.html │ │ │ │ ├── datagrid │ │ │ │ │ ├── basic.html │ │ │ │ │ └── rowediting.html │ │ │ │ ├── datalist │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── group.html │ │ │ │ │ └── selection.html │ │ │ │ ├── dialog │ │ │ │ │ ├── basic.html │ │ │ │ │ └── message.html │ │ │ │ ├── form │ │ │ │ │ └── basic.html │ │ │ │ ├── images │ │ │ │ │ ├── login1.jpg │ │ │ │ │ ├── modem.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── pda.png │ │ │ │ │ ├── scanner.png │ │ │ │ │ └── tablet.png │ │ │ │ ├── input │ │ │ │ │ ├── numberspinner.html │ │ │ │ │ └── textbox.html │ │ │ │ ├── layout │ │ │ │ │ └── basic.html │ │ │ │ ├── menu │ │ │ │ │ ├── basic.html │ │ │ │ │ └── menubar.html │ │ │ │ ├── panel │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── basic.html │ │ │ │ │ └── nav.html │ │ │ │ ├── simplelist │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── image.html │ │ │ │ │ └── link.html │ │ │ │ ├── tabs │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── nav.html │ │ │ │ │ └── pill.html │ │ │ │ ├── toolbar │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── button.html │ │ │ │ │ └── menu.html │ │ │ │ └── tree │ │ │ │ │ ├── basic.html │ │ │ │ │ └── dnd.html │ │ │ ├── demo │ │ │ │ ├── accordion │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── datagrid_data1.json │ │ │ │ │ ├── expandable.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── horizontal.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ └── tools.html │ │ │ │ ├── calendar │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── disabledate.html │ │ │ │ │ ├── firstday.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ └── weeknumber.html │ │ │ │ ├── checkbox │ │ │ │ │ └── basic.html │ │ │ │ ├── combo │ │ │ │ │ ├── animation.html │ │ │ │ │ └── basic.html │ │ │ │ ├── combobox │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── combobox_data1.json │ │ │ │ │ ├── combobox_data2.json │ │ │ │ │ ├── customformat.html │ │ │ │ │ ├── dynamicdata.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── itemicon.html │ │ │ │ │ ├── multiline.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── remotedata.html │ │ │ │ │ └── remotejsonp.html │ │ │ │ ├── combogrid │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── datagrid_data1.json │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── initvalue.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ └── setvalue.html │ │ │ │ ├── combotree │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── initvalue.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ └── tree_data1.json │ │ │ │ ├── combotreegrid │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ └── treegrid_data1.json │ │ │ │ ├── datagrid │ │ │ │ │ ├── aligncolumns.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── cacheeditor.html │ │ │ │ │ ├── cellediting.html │ │ │ │ │ ├── cellstyle.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── clientpagination.html │ │ │ │ │ ├── columngroup.html │ │ │ │ │ ├── complextoolbar.html │ │ │ │ │ ├── contextmenu.html │ │ │ │ │ ├── custompager.html │ │ │ │ │ ├── datagrid_data1.json │ │ │ │ │ ├── datagrid_data2.json │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── formatcolumns.html │ │ │ │ │ ├── frozencolumns.html │ │ │ │ │ ├── frozenrows.html │ │ │ │ │ ├── mergecells.html │ │ │ │ │ ├── multisorting.html │ │ │ │ │ ├── products.json │ │ │ │ │ ├── rowborder.html │ │ │ │ │ ├── rowediting.html │ │ │ │ │ ├── rowstyle.html │ │ │ │ │ ├── selection.html │ │ │ │ │ ├── simpletoolbar.html │ │ │ │ │ └── transform.html │ │ │ │ ├── datalist │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── datalist_data1.json │ │ │ │ │ ├── group.html │ │ │ │ │ ├── multiselect.html │ │ │ │ │ └── remotedata.html │ │ │ │ ├── datebox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── clone.html │ │ │ │ │ ├── dateformat.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── restrict.html │ │ │ │ │ ├── sharedcalendar.html │ │ │ │ │ └── validate.html │ │ │ │ ├── datetimebox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── initvalue.html │ │ │ │ │ └── showseconds.html │ │ │ │ ├── datetimespinner │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── clearicon.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ └── format.html │ │ │ │ ├── demo.css │ │ │ │ ├── dialog │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── complextoolbar.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ └── toolbarbuttons.html │ │ │ │ ├── draggable │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── constrain.html │ │ │ │ │ └── snap.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accept.html │ │ │ │ │ ├── basic.html │ │ │ │ │ └── sort.html │ │ │ │ ├── easyloader │ │ │ │ │ └── basic.html │ │ │ │ ├── filebox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── buttonalign.html │ │ │ │ │ └── fluid.html │ │ │ │ ├── form │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── form_data1.json │ │ │ │ │ ├── load.html │ │ │ │ │ └── validateonsubmit.html │ │ │ │ ├── layout │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── addremove.html │ │ │ │ │ ├── autoheight.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── collapsetitle.html │ │ │ │ │ ├── complex.html │ │ │ │ │ ├── customcollapsetitle.html │ │ │ │ │ ├── datagrid_data1.json │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── full.html │ │ │ │ │ ├── nestedlayout.html │ │ │ │ │ ├── nocollapsible.html │ │ │ │ │ ├── propertygrid_data1.json │ │ │ │ │ └── tree_data1.json │ │ │ │ ├── linkbutton │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── iconalign.html │ │ │ │ │ ├── plain.html │ │ │ │ │ ├── size.html │ │ │ │ │ ├── style.html │ │ │ │ │ └── toggle.html │ │ │ │ ├── maskedbox │ │ │ │ │ └── basic.html │ │ │ │ ├── menu │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customitem.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── inline.html │ │ │ │ │ └── nav.html │ │ │ │ ├── menubutton │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── alignment.html │ │ │ │ │ ├── basic.html │ │ │ │ │ └── nav.html │ │ │ │ ├── messager │ │ │ │ │ ├── alert.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── interactive.html │ │ │ │ │ └── position.html │ │ │ │ ├── numberbox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── format.html │ │ │ │ │ └── range.html │ │ │ │ ├── numberspinner │ │ │ │ │ ├── align.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── increment.html │ │ │ │ │ └── range.html │ │ │ │ ├── pagination │ │ │ │ │ ├── attaching.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── custombuttons.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── links.html │ │ │ │ │ └── simple.html │ │ │ │ ├── panel │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customtools.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── halign.html │ │ │ │ │ ├── loadcontent.html │ │ │ │ │ ├── nestedpanel.html │ │ │ │ │ └── paneltools.html │ │ │ │ ├── passwordbox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── flash.html │ │ │ │ │ └── validatepassword.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── basic.html │ │ │ │ │ └── fluid.html │ │ │ │ ├── propertygrid │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customcolumns.html │ │ │ │ │ ├── groupformat.html │ │ │ │ │ └── propertygrid_data1.json │ │ │ │ ├── radiobutton │ │ │ │ │ └── basic.html │ │ │ │ ├── resizable │ │ │ │ │ └── basic.html │ │ │ │ ├── searchbox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── category.html │ │ │ │ │ └── fluid.html │ │ │ │ ├── sidemenu │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── sidemenu_style.css │ │ │ │ │ └── style.html │ │ │ │ ├── slider │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── formattip.html │ │ │ │ │ ├── nonlinear.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rule.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── splitbutton │ │ │ │ │ ├── actions.html │ │ │ │ │ └── basic.html │ │ │ │ ├── switchbutton │ │ │ │ │ ├── action.html │ │ │ │ │ └── basic.html │ │ │ │ ├── tabs │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── autoheight.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── fixedwidth.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── hover.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── modem.png │ │ │ │ │ │ ├── pda.png │ │ │ │ │ │ ├── scanner.png │ │ │ │ │ │ └── tablet.png │ │ │ │ │ ├── nestedtabs.html │ │ │ │ │ ├── striptools.html │ │ │ │ │ ├── style.html │ │ │ │ │ ├── tabimage.html │ │ │ │ │ ├── tabposition.html │ │ │ │ │ ├── tabstools.html │ │ │ │ │ └── tree_data1.json │ │ │ │ ├── tagbox │ │ │ │ │ ├── autocomplete.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── format.html │ │ │ │ │ ├── style.html │ │ │ │ │ ├── tagbox_data1.json │ │ │ │ │ └── validate.html │ │ │ │ ├── textbox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── clearicon.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── multiline.html │ │ │ │ │ └── size.html │ │ │ │ ├── timespinner │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── hour12.html │ │ │ │ │ └── range.html │ │ │ │ ├── tooltip │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── _dialog.html │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customcontent.html │ │ │ │ │ ├── customstyle.html │ │ │ │ │ ├── position.html │ │ │ │ │ ├── toolbar.html │ │ │ │ │ └── tooltipdialog.html │ │ │ │ ├── tree │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── contextmenu.html │ │ │ │ │ ├── customcheckbox.html │ │ │ │ │ ├── dnd.html │ │ │ │ │ ├── editable.html │ │ │ │ │ ├── formatting.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── lazyload.html │ │ │ │ │ ├── lines.html │ │ │ │ │ ├── tree_data1.json │ │ │ │ │ └── tree_data2.json │ │ │ │ ├── treegrid │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── clientpagination.html │ │ │ │ │ ├── contextmenu.html │ │ │ │ │ ├── customcheckbox.html │ │ │ │ │ ├── editable.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── lines.html │ │ │ │ │ ├── reports.html │ │ │ │ │ ├── treegrid_data1.json │ │ │ │ │ ├── treegrid_data2.json │ │ │ │ │ └── treegrid_data3.json │ │ │ │ ├── validatebox │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customtooltip.html │ │ │ │ │ ├── errorplacement.html │ │ │ │ │ └── validateonblur.html │ │ │ │ └── window │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── borderstyle.html │ │ │ │ │ ├── customtools.html │ │ │ │ │ ├── fluid.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── inlinewindow.html │ │ │ │ │ ├── modalwindow.html │ │ │ │ │ └── windowlayout.html │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.min.js │ │ │ ├── jquery.easyui.mobile.js │ │ │ ├── jquery.min.js │ │ │ ├── license_freeware.txt │ │ │ ├── locale │ │ │ │ ├── easyui-lang-af.js │ │ │ │ ├── easyui-lang-am.js │ │ │ │ ├── easyui-lang-ar.js │ │ │ │ ├── easyui-lang-bg.js │ │ │ │ ├── easyui-lang-ca.js │ │ │ │ ├── easyui-lang-cs.js │ │ │ │ ├── easyui-lang-cz.js │ │ │ │ ├── easyui-lang-da.js │ │ │ │ ├── easyui-lang-de.js │ │ │ │ ├── easyui-lang-el.js │ │ │ │ ├── easyui-lang-en.js │ │ │ │ ├── easyui-lang-es.js │ │ │ │ ├── easyui-lang-fa.js │ │ │ │ ├── easyui-lang-fr.js │ │ │ │ ├── easyui-lang-it.js │ │ │ │ ├── easyui-lang-jp.js │ │ │ │ ├── easyui-lang-ko.js │ │ │ │ ├── easyui-lang-nl.js │ │ │ │ ├── easyui-lang-pl.js │ │ │ │ ├── easyui-lang-pt_BR.js │ │ │ │ ├── easyui-lang-ru.js │ │ │ │ ├── easyui-lang-sv_SE.js │ │ │ │ ├── easyui-lang-tr.js │ │ │ │ ├── easyui-lang-ua.js │ │ │ │ ├── easyui-lang-zh_CN.js │ │ │ │ └── easyui-lang-zh_TW.js │ │ │ ├── plugins │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.checkbox.js │ │ │ │ ├── jquery.combo.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.combogrid.js │ │ │ │ ├── jquery.combotree.js │ │ │ │ ├── jquery.combotreegrid.js │ │ │ │ ├── jquery.datagrid.js │ │ │ │ ├── jquery.datalist.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.datetimebox.js │ │ │ │ ├── jquery.datetimespinner.js │ │ │ │ ├── jquery.dialog.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.filebox.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.layout.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.maskedbox.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.menubutton.js │ │ │ │ ├── jquery.messager.js │ │ │ │ ├── jquery.mobile.js │ │ │ │ ├── jquery.numberbox.js │ │ │ │ ├── jquery.numberspinner.js │ │ │ │ ├── jquery.pagination.js │ │ │ │ ├── jquery.panel.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.passwordbox.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.radiobutton.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.searchbox.js │ │ │ │ ├── jquery.sidemenu.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.spinner.js │ │ │ │ ├── jquery.splitbutton.js │ │ │ │ ├── jquery.switchbutton.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ ├── jquery.tagbox.js │ │ │ │ ├── jquery.textbox.js │ │ │ │ ├── jquery.timespinner.js │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── jquery.tree.js │ │ │ │ ├── jquery.treegrid.js │ │ │ │ ├── jquery.validatebox.js │ │ │ │ └── jquery.window.js │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── easyloader.js │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ └── jquery.window.js │ │ │ └── themes │ │ │ │ ├── angular.css │ │ │ │ ├── black │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── bootstrap │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── color.css │ │ │ │ ├── default │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── gray │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── icon.css │ │ │ │ ├── icons │ │ │ │ ├── back.png │ │ │ │ ├── blank.gif │ │ │ │ ├── cancel.png │ │ │ │ ├── clear.png │ │ │ │ ├── cut.png │ │ │ │ ├── edit_add.png │ │ │ │ ├── edit_remove.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filter.png │ │ │ │ ├── help.png │ │ │ │ ├── large_chart.png │ │ │ │ ├── large_clipart.png │ │ │ │ ├── large_picture.png │ │ │ │ ├── large_shapes.png │ │ │ │ ├── large_smartart.png │ │ │ │ ├── lock.png │ │ │ │ ├── man.png │ │ │ │ ├── mini_add.png │ │ │ │ ├── mini_edit.png │ │ │ │ ├── mini_refresh.png │ │ │ │ ├── more.png │ │ │ │ ├── no.png │ │ │ │ ├── ok.png │ │ │ │ ├── pencil.png │ │ │ │ ├── print.png │ │ │ │ ├── redo.png │ │ │ │ ├── reload.png │ │ │ │ ├── search.png │ │ │ │ ├── sum.png │ │ │ │ ├── tip.png │ │ │ │ └── undo.png │ │ │ │ ├── material-blue │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── menu_arrows1.png │ │ │ │ │ ├── menu_arrows2.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── material-teal │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── material │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── metro │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── mobile.css │ │ │ │ ├── react.css │ │ │ │ └── vue.css │ │ ├── jquery-validation │ │ │ ├── Gruntfile.js │ │ │ ├── demo │ │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ │ ├── bootstrap │ │ │ │ │ ├── index-bs4.html │ │ │ │ │ └── index.html │ │ │ │ ├── captcha │ │ │ │ │ ├── captcha.js │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── Anorexia.ttf │ │ │ │ │ ├── image_req.php │ │ │ │ │ ├── images │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ └── image.php │ │ │ │ │ ├── index.php │ │ │ │ │ ├── newsession.php │ │ │ │ │ ├── process.php │ │ │ │ │ ├── rand.php │ │ │ │ │ └── style.css │ │ │ │ ├── cinema │ │ │ │ │ ├── index.html │ │ │ │ │ ├── plan_9.jpg │ │ │ │ │ ├── refer_madness.jpg │ │ │ │ │ └── saucer_men.jpg │ │ │ │ ├── css │ │ │ │ │ ├── cmxform.css │ │ │ │ │ ├── cmxformTemplate.css │ │ │ │ │ ├── core.css │ │ │ │ │ ├── reset.css │ │ │ │ │ └── screen.css │ │ │ │ ├── custom-messages-data-demo.html │ │ │ │ ├── custom-methods-demo.html │ │ │ │ ├── dynamic-totals.html │ │ │ │ ├── errorcontainer-demo.html │ │ │ │ ├── errors-within-labels.html │ │ │ │ ├── file_input.html │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── cmxform-divider.gif │ │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── unchecked.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquerymobile.html │ │ │ │ ├── login │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── header1.jpg │ │ │ │ │ │ ├── page.gif │ │ │ │ │ │ └── required_star.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── screen.css │ │ │ │ ├── marketo │ │ │ │ │ ├── images │ │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ │ ├── sf.png │ │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ │ ├── time.png │ │ │ │ │ │ ├── toggle.gif │ │ │ │ │ │ └── warning.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ │ ├── mktSignup.js │ │ │ │ │ ├── step2.htm │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── milk │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── left_white.png │ │ │ │ │ ├── milk.css │ │ │ │ │ ├── milk.png │ │ │ │ │ └── right_white.png │ │ │ │ ├── multipart │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── radio-checkbox-select-demo.html │ │ │ │ ├── requirejs │ │ │ │ │ ├── app.js │ │ │ │ │ └── index.html │ │ │ │ ├── semantic-ui │ │ │ │ │ └── index.html │ │ │ │ ├── site-demos.css │ │ │ │ ├── themerollered.html │ │ │ │ ├── tinymce │ │ │ │ │ ├── index.html │ │ │ │ │ ├── themes │ │ │ │ │ │ └── simple │ │ │ │ │ │ │ ├── editor_template.js │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── icons.gif │ │ │ │ │ │ │ ├── langs │ │ │ │ │ │ │ └── en.js │ │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── tiny_mce.js │ │ │ │ └── tinymce4 │ │ │ │ │ └── index.html │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ ├── lib │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ ├── jquery-1.8.3.js │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-3.1.1.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.mockjax-1.5.3.js │ │ │ │ ├── jquery.mockjax-2.2.1.js │ │ │ │ ├── jquery.mockjax.js │ │ │ │ ├── jquery.simulate.js │ │ │ │ └── require.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── abaRoutingNumber.js │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cnhBR.js │ │ │ │ │ ├── cnpjBR.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcard.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── greaterThan.js │ │ │ │ │ ├── greaterThanEqual.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lessThan.js │ │ │ │ │ ├── lessThanEqual.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── maxfiles.js │ │ │ │ │ ├── maxsize.js │ │ │ │ │ ├── maxsizetotal.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileRU.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── netmask.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── nipPL.js │ │ │ │ │ ├── nisBR.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phonePL.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_az.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_mk.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_sd.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_ur.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── test │ │ │ │ ├── additional │ │ │ │ ├── abaRoutingNumber.js │ │ │ │ ├── cnhBR.js │ │ │ │ ├── creditcard.js │ │ │ │ └── netmask.js │ │ │ │ ├── aria.js │ │ │ │ ├── error-placement.js │ │ │ │ ├── index.html │ │ │ │ ├── messages.js │ │ │ │ ├── methods.js │ │ │ │ ├── rules.js │ │ │ │ └── test.js │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── core.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── jquery.slim.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── jquery.slim.min.map │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.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 │ │ │ │ ├── DOMEval.js │ │ │ │ ├── access.js │ │ │ │ ├── camelCase.js │ │ │ │ ├── init.js │ │ │ │ ├── nodeName.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready-no-deferred.js │ │ │ │ ├── ready.js │ │ │ │ ├── readyException.js │ │ │ │ ├── stripAndCollapse.js │ │ │ │ ├── support.js │ │ │ │ ├── toType.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ │ ├── rboxStyle.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deferred │ │ │ │ └── exceptionHook.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ ├── focusin.js │ │ │ │ ├── support.js │ │ │ │ └── trigger.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── ObjectFunctionString.js │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── fnToString.js │ │ │ │ ├── getProto.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── isFunction.js │ │ │ │ ├── isWindow.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnothtmlwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── layer-v3.1.1 │ │ │ ├── layer │ │ │ │ ├── layer.js │ │ │ │ ├── mobile │ │ │ │ │ ├── layer.js │ │ │ │ │ └── need │ │ │ │ │ │ └── layer.css │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ ├── test.html │ │ │ ├── 文档 │ │ │ │ ├── jquery下载.url │ │ │ │ ├── layer官网.url │ │ │ │ ├── layer文档.url │ │ │ │ ├── layui社区.url │ │ │ │ └── 获得layim.url │ │ │ └── 更新日志.txt │ │ └── ztree │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ ├── jquery.ztree.all-3.5.min.js │ │ │ └── zTreeStyle.css │ │ ├── c71e5ee64f79b908df5223fd8e079868 │ │ ├── c890f6c515173e467eb9a043aca466d4 │ │ ├── css │ │ ├── base.css │ │ ├── bower_components │ │ │ └── highlightjs │ │ │ │ └── styles │ │ │ │ └── color-brewer.css │ │ ├── doc.css │ │ ├── fonts.css │ │ ├── footer.css │ │ └── header_public.css │ │ ├── d2bfb14f2d089a9e652990e129e813b │ │ ├── d602f541df4030cc0cff0551530edfb7 │ │ ├── da08af06ff7c3e415fa7ef624e466fc6 │ │ ├── e4e331e87a8ff2523a6650b758d59ee9 │ │ ├── e7db83e225a2ad5dbe5e8a697b861da1 │ │ ├── ef04e3d6ccb707c75182dabd2364b53d │ │ ├── f11727968a2ce6cca46878488c31c30 │ │ ├── fb46a902c5045885114581350f994934 │ │ ├── fc122eb08f2e65c20c2ac59677f46194 │ │ ├── scripts │ │ ├── mobile.js │ │ └── raneto.js │ │ └── static │ │ ├── admin │ │ ├── assets │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── css │ │ │ │ ├── form-elements.css │ │ │ │ └── style.css │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── ico │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ └── favicon.png │ │ │ ├── img │ │ │ │ └── backgrounds │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 1@2x.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 2@2x.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ └── 3@2x.jpg │ │ │ └── js │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ ├── jquery.backstretch.js │ │ │ │ ├── jquery.backstretch.min.js │ │ │ │ ├── login.js │ │ │ │ ├── placeholder.js │ │ │ │ └── scripts.js │ │ ├── css │ │ │ ├── adminDecoration.css │ │ │ ├── login-varab.30c2bb34.css │ │ │ └── photo │ │ │ │ └── login_background.jpg │ │ ├── icon │ │ │ ├── redleaf.png │ │ │ └── redleaf.svg │ │ ├── js │ │ │ ├── jq.670de40a.js │ │ │ └── loginab.ca36a175.js │ │ └── photo │ │ │ └── login_background.jpg │ │ └── student │ │ ├── assets │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── css │ │ │ ├── form-elements.css │ │ │ └── style.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.png │ │ ├── img │ │ │ └── backgrounds │ │ │ │ ├── 1.jpg │ │ │ │ ├── 1@2x.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2@2x.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── 3@2x.jpg │ │ └── js │ │ │ ├── jquery-1.11.1.js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery.backstretch.js │ │ │ ├── jquery.backstretch.min.js │ │ │ ├── login.js │ │ │ ├── placeholder.js │ │ │ └── scripts.js │ │ ├── common │ │ ├── bootstrap-footer.jsp │ │ └── bootstrap-header.jsp │ │ ├── css │ │ ├── ie10-viewport-bug-workaround.css │ │ ├── layui │ │ │ ├── css │ │ │ │ ├── layui.css │ │ │ │ ├── layui.mobile.css │ │ │ │ └── modules │ │ │ │ │ ├── code.css │ │ │ │ │ ├── laydate │ │ │ │ │ └── default │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── layer │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ └── iconfont.woff │ │ │ ├── images │ │ │ │ └── face │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ └── 9.gif │ │ │ ├── lay │ │ │ │ └── modules │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── colorpicker.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── layedit.js │ │ │ │ │ ├── layer.js │ │ │ │ │ ├── laypage.js │ │ │ │ │ ├── laytpl.js │ │ │ │ │ ├── mobile.js │ │ │ │ │ ├── rate.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── tree.js │ │ │ │ │ ├── upload.js │ │ │ │ │ └── util.js │ │ │ ├── layui.all.js │ │ │ └── layui.js │ │ ├── login-varab.30c2bb34.css │ │ ├── my │ │ │ ├── dashboard.css │ │ │ ├── jumbotron.css │ │ │ └── signin.css │ │ └── signup-varab.0c7cffb4.css │ │ ├── icon │ │ └── favicon.ico │ │ ├── js │ │ ├── ie-emulation-modes-warning.js │ │ ├── ie10-viewport-bug-workaround.js │ │ ├── ie8-responsive-file-warning.js │ │ ├── jq.670de40a.js │ │ ├── loginab.ca36a175.js │ │ └── register-varab.149a336b.js │ │ └── layui.css └── test │ └── java │ └── com │ └── ilovecl │ └── demo │ └── DemoApplicationTests.java └── 基于Spring Boot的校园报修.docx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/.DS_Store -------------------------------------------------------------------------------- /src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/.DS_Store -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/1@2x.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/2@2x.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/img/backgrounds/3@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/assets/img/backgrounds/3@2x.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/assets/js/placeholder.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $(".form-username").val("Username..."); 5 | $(".form-password").val("Password..."); 6 | 7 | }); -------------------------------------------------------------------------------- /src/main/resources/static/admin/css/adminDecoration.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image:url(photo/login_background.jpg); 3 | } -------------------------------------------------------------------------------- /src/main/resources/static/admin/css/photo/login_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/css/photo/login_background.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/icon/redleaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/icon/redleaf.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/photo/login_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/admin/photo/login_background.jpg -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/assets/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/img/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/assets/img/backgrounds/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/img/backgrounds/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/assets/img/backgrounds/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/student/assets/js/placeholder.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $(".form-username").val("Username..."); 5 | $(".form-password").val("Password..."); 6 | 7 | }); -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/css/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/student/css/my/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/static/student/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/resources/static/student/icon/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/115b82b1e7863e426dab938768b8b012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/115b82b1e7863e426dab938768b8b012 -------------------------------------------------------------------------------- /src/main/webapp/11b65b521a2072795dcce18b80692792: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/11b65b521a2072795dcce18b80692792 -------------------------------------------------------------------------------- /src/main/webapp/14eec01fccc4f901a6b5a1cdc8bde729: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/14eec01fccc4f901a6b5a1cdc8bde729 -------------------------------------------------------------------------------- /src/main/webapp/16a002e97fb6f87c9dd7f03043723fe3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/16a002e97fb6f87c9dd7f03043723fe3 -------------------------------------------------------------------------------- /src/main/webapp/18ea7a1f102f52949d0ba3ded8617c67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/18ea7a1f102f52949d0ba3ded8617c67 -------------------------------------------------------------------------------- /src/main/webapp/1b2e47f66bb92f2e903fc073ea3099b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/1b2e47f66bb92f2e903fc073ea3099b6 -------------------------------------------------------------------------------- /src/main/webapp/1e52d5312f3536dbf0aabb1efec724bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/1e52d5312f3536dbf0aabb1efec724bc -------------------------------------------------------------------------------- /src/main/webapp/29388f6f439b950c248636da6cb04ef3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/29388f6f439b950c248636da6cb04ef3 -------------------------------------------------------------------------------- /src/main/webapp/2be7f8e8f9edbb6ad81c0ecdabc045bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/2be7f8e8f9edbb6ad81c0ecdabc045bf -------------------------------------------------------------------------------- /src/main/webapp/2d35e0b5ee49634c0d9fa483ba2010da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/2d35e0b5ee49634c0d9fa483ba2010da -------------------------------------------------------------------------------- /src/main/webapp/336cd75833d443ab58e7cc52916b6d07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/336cd75833d443ab58e7cc52916b6d07 -------------------------------------------------------------------------------- /src/main/webapp/34981b9d8fe9a43af5c78bd924398d02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/34981b9d8fe9a43af5c78bd924398d02 -------------------------------------------------------------------------------- /src/main/webapp/34a19f5ef84c7f02eeabe1754a4f9b6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/34a19f5ef84c7f02eeabe1754a4f9b6b -------------------------------------------------------------------------------- /src/main/webapp/34d43f9f40fa04fcec9bb7278a102f41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/34d43f9f40fa04fcec9bb7278a102f41 -------------------------------------------------------------------------------- /src/main/webapp/389de63cf22d625a23fa38f31466230e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/389de63cf22d625a23fa38f31466230e -------------------------------------------------------------------------------- /src/main/webapp/3c163c8d4eedd17eec11118de046ca37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/3c163c8d4eedd17eec11118de046ca37 -------------------------------------------------------------------------------- /src/main/webapp/3f6ff3f52a37f8a7d44ab556ed359c51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/3f6ff3f52a37f8a7d44ab556ed359c51 -------------------------------------------------------------------------------- /src/main/webapp/458773fb6b092f903a2a116de60e26b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/458773fb6b092f903a2a116de60e26b -------------------------------------------------------------------------------- /src/main/webapp/46affc36ae5ec3c93a76429fbe981da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/46affc36ae5ec3c93a76429fbe981da9 -------------------------------------------------------------------------------- /src/main/webapp/4729731cc23c521b5285c374d2c402f8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/4729731cc23c521b5285c374d2c402f8 -------------------------------------------------------------------------------- /src/main/webapp/4a8bf9fe989578891e887affef3af719: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/4a8bf9fe989578891e887affef3af719 -------------------------------------------------------------------------------- /src/main/webapp/4be291791881f75b31f2a22c3fd70e02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/4be291791881f75b31f2a22c3fd70e02 -------------------------------------------------------------------------------- /src/main/webapp/4c06def17e47dcbbb49dc64c700bfc2f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/4c06def17e47dcbbb49dc64c700bfc2f -------------------------------------------------------------------------------- /src/main/webapp/558f5090bde1783c14ba13a298735ae0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/558f5090bde1783c14ba13a298735ae0 -------------------------------------------------------------------------------- /src/main/webapp/592a9cf91fbf4effe3ed4cd6699f6893: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/592a9cf91fbf4effe3ed4cd6699f6893 -------------------------------------------------------------------------------- /src/main/webapp/5caff1c798071fc9a79c84d3458b3bf6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/5caff1c798071fc9a79c84d3458b3bf6 -------------------------------------------------------------------------------- /src/main/webapp/5e54fb49fdc361a0d3b2f8a17a45a29f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/5e54fb49fdc361a0d3b2f8a17a45a29f -------------------------------------------------------------------------------- /src/main/webapp/5e9761df291d5d1c25a52a51598baef5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/5e9761df291d5d1c25a52a51598baef5 -------------------------------------------------------------------------------- /src/main/webapp/5ee130641831b3ceda5e3ef2d8475587: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/5ee130641831b3ceda5e3ef2d8475587 -------------------------------------------------------------------------------- /src/main/webapp/65f439ae2cae3985445933cd629f64cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/65f439ae2cae3985445933cd629f64cf -------------------------------------------------------------------------------- /src/main/webapp/69205460b9d1efba9ce5299374614721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/69205460b9d1efba9ce5299374614721 -------------------------------------------------------------------------------- /src/main/webapp/6a148447ceb907557a7a101df5937e2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/6a148447ceb907557a7a101df5937e2a -------------------------------------------------------------------------------- /src/main/webapp/7884e23b1d7465214e507aa908b6d432: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/7884e23b1d7465214e507aa908b6d432 -------------------------------------------------------------------------------- /src/main/webapp/80349df4993652a94ef18ccde6c8bb65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/80349df4993652a94ef18ccde6c8bb65 -------------------------------------------------------------------------------- /src/main/webapp/83e00e4e1f68abdd21d4150f2bdd912a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/83e00e4e1f68abdd21d4150f2bdd912a -------------------------------------------------------------------------------- /src/main/webapp/84df5cf96a80016e074dda01e05bd2f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/84df5cf96a80016e074dda01e05bd2f5 -------------------------------------------------------------------------------- /src/main/webapp/85df2afa6e8920d7bf37c277796cab90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/85df2afa6e8920d7bf37c277796cab90 -------------------------------------------------------------------------------- /src/main/webapp/872f42fad3648bd537ef34e7a85697d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/872f42fad3648bd537ef34e7a85697d8 -------------------------------------------------------------------------------- /src/main/webapp/88adb4847a4bb1a06be4fc898b107f28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/88adb4847a4bb1a06be4fc898b107f28 -------------------------------------------------------------------------------- /src/main/webapp/88cc13cd183f83baa999aa0a6c8df6c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/88cc13cd183f83baa999aa0a6c8df6c1 -------------------------------------------------------------------------------- /src/main/webapp/8a497acf49ef0823c45e5148cd4e1006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/8a497acf49ef0823c45e5148cd4e1006 -------------------------------------------------------------------------------- /src/main/webapp/90f8ca577376b47cc8ba2fb3f8add0d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/90f8ca577376b47cc8ba2fb3f8add0d -------------------------------------------------------------------------------- /src/main/webapp/92834ef30242b840b4ca5f2a4ba16a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/92834ef30242b840b4ca5f2a4ba16a4 -------------------------------------------------------------------------------- /src/main/webapp/94c63c7030d0c20f88d63c378a6c3cc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/94c63c7030d0c20f88d63c378a6c3cc9 -------------------------------------------------------------------------------- /src/main/webapp/9a8657cd57eec778d962a2802ca8c7c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/9a8657cd57eec778d962a2802ca8c7c3 -------------------------------------------------------------------------------- /src/main/webapp/9b3f7c82201e1d26cda55f7d8c7a7771: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/9b3f7c82201e1d26cda55f7d8c7a7771 -------------------------------------------------------------------------------- /src/main/webapp/a13e3e478141f4f06fb6629ee5846122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/a13e3e478141f4f06fb6629ee5846122 -------------------------------------------------------------------------------- /src/main/webapp/a1dbc9863bbb3e9a13c0a1269227b025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/a1dbc9863bbb3e9a13c0a1269227b025 -------------------------------------------------------------------------------- /src/main/webapp/a6490d312669d6f057d118ebbe65ae02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/a6490d312669d6f057d118ebbe65ae02 -------------------------------------------------------------------------------- /src/main/webapp/a7f7efdc552eb23402df9eafcb5c7a6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/a7f7efdc552eb23402df9eafcb5c7a6a -------------------------------------------------------------------------------- /src/main/webapp/ab2409d74d7dcca8b68c7961082a5d77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/ab2409d74d7dcca8b68c7961082a5d77 -------------------------------------------------------------------------------- /src/main/webapp/afa71d8a0b810029f4852723021b093f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/afa71d8a0b810029f4852723021b093f -------------------------------------------------------------------------------- /src/main/webapp/b036f014c6e05b21df4f64a9990dc518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/b036f014c6e05b21df4f64a9990dc518 -------------------------------------------------------------------------------- /src/main/webapp/b714dc5976a769000c35507e0c327e98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/b714dc5976a769000c35507e0c327e98 -------------------------------------------------------------------------------- /src/main/webapp/bb74d952714668a651af8f15deb753e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bb74d952714668a651af8f15deb753e -------------------------------------------------------------------------------- /src/main/webapp/bower_components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/less/ionicons.less: -------------------------------------------------------------------------------- 1 | @import "_ionicons-variables"; 2 | @import "_ionicons-font"; 3 | @import "_ionicons-icons"; 4 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/alert.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/aperture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/aperture.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/archive.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/arrow-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/arrow-move.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/arrow-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/arrow-swap.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/arrow-up-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/arrow-up-a.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/arrow-up-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/arrow-up-b.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/arrow-up-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/arrow-up-c.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/asterisk.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/at.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/bag.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/beaker.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/beer.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/bluetooth.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/bonfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/bonfire.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/bookmark.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/briefcase.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/bug.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/calculator.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/calendar.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/camera.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/card.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/cash.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/chatbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/chatbox.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/chatboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/chatboxes.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/chatbubble.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/checkmark.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/chevron-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/chevron-up.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/clipboard.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/clock.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/close.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/cloud.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/code.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/coffee.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/compass.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/compose.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/contrast.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/cube.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/disc.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/document.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/drag.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/earth.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/edit.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/egg.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/eject.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/email.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/eye.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/female.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/filing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/filing.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/fireball.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/flag.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/flame.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/flash-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/flash-off.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/flash.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/flask.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/folder.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/fork-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/fork-repo.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/fork.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/forward.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/funnel.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/gear-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/gear-a.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/gear-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/gear-b.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/grid.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/hammer.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/happy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/headphone.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/heart.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/help-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/help-buoy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/help.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/home.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/icecream.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/image.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/images.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ionic.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-alarm.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-at.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-bell.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-bolt.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-box.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-cart.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-clock.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-close.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-cloud.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-cog.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-copy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-drag.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-email.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-eye.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-film.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-flag.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-gear.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-heart.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-help.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-home.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-loop.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-mic.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-minus.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-moon.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-more.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-paper.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-pause.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-paw.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-pie.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-play.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-plus.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-pulse.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-rainy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-redo.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-snowy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-snowy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-star.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-sunny.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-time.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-timer.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-trash.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-undo.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ios7-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ios7-world.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ipad.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/iphone.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/ipod.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/jet.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/key.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/knife.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/laptop.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/leaf.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/levels.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/lightbulb.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/link.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/load-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/load-a.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/load-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/load-b.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/load-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/load-c.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/load-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/load-d.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/location.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/locked.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/log-in.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/log-out.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/loop.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/magnet.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/male.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/man.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/map.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/medkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/medkit.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/merge.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/mic-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/mic-a.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/mic-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/mic-b.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/mic-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/mic-c.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/minus.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/model-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/model-s.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/monitor.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/more.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/mouse.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/music-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/music-note.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/navicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/navicon.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/navigate.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/network.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/no-smoking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/no-smoking.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/nuclear.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/outlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/outlet.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/paperclip.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/pause.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/person-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/person-add.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/person.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/pie-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/pie-graph.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/pin.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/pizza.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/plane.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/planet.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/play.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/plus.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/podium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/podium.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/pound.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/power.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/printer.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/quote.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/record.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/refresh.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/reply.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/sad.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/search.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/share.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/shuffle.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/spoon.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/star.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/steam.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/stop.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/toggle.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/trash-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/trash-a.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/trash-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/trash-b.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/trophy.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/upload.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/usb.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/wand.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/wifi.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/woman.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/wrench.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/Ionicons/png/512/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/Ionicons/png/512/xbox.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-right: auto; 6 | margin-left: auto; 7 | } 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | @opacity-ie: (@opacity * 100); // IE8 filter 5 | filter: ~"alpha(opacity=@{opacity-ie})"; 6 | opacity: @opacity; 7 | } 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery-easyui/demo/form/form_data1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"easyui", 3 | "email":"easyui@gmail.com", 4 | "subject":"Subject Title", 5 | "message":"Message Content", 6 | "language":"de", 7 | "accept":"true" 8 | } -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "lettersonly", function( value, element ) { 2 | return this.optional( element ) || /^[a-z]+$/i.test( value ); 3 | }, "Letters only please" ); 4 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "nowhitespace", function( value, element ) { 2 | return this.optional( element ) || /^\S+$/i.test( value ); 3 | }, "No white space please" ); 4 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "../.eslintrc-browser.json" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /\?/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // Match a standalone tag 5 | return ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); 6 | } ); 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return [ "Top", "Right", "Bottom", "Left" ]; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/css/var/rboxStyle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./cssExpand" 3 | ], function( cssExpand ) { 4 | "use strict"; 5 | 6 | return new RegExp( cssExpand.join( "|" ), "i" ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | "use strict"; 5 | 6 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | "use strict"; 5 | 6 | return new Data(); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | "use strict"; 5 | 6 | return new Data(); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | "use strict"; 6 | 7 | support.focusin = "onfocusin" in window; 8 | 9 | return support; 10 | 11 | } ); 12 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /^(?:checkbox|radio)$/i ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /^$|^module$|\/(?:java|ecma)script/i ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | "use strict"; 6 | 7 | return jQuery.expr.match.needsContext; 8 | } ); 9 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./fnToString" 3 | ], function( fnToString ) { 4 | "use strict"; 5 | 6 | return fnToString.call( Object ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.concat; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.document; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | "use strict"; 5 | 6 | return document.documentElement; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./hasOwn" 3 | ], function( hasOwn ) { 4 | "use strict"; 5 | 6 | return hasOwn.toString; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | "use strict"; 5 | 6 | return class2type.hasOwnProperty; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.indexOf; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/isWindow.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return function isWindow( obj ) { 5 | return obj != null && obj === obj.window; 6 | }; 7 | 8 | } ); 9 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.push; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | "use strict"; 6 | 7 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.slice; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // All support tests are defined in their respective modules. 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | "use strict"; 5 | 6 | return class2type.toString; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/layer-v3.1.1/文档/jquery下载.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://code.jquery.com/jquery-1.11.3.min.js 5 | IDList= 6 | HotKey=0 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/layer-v3.1.1/文档/layer官网.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://layer.layui.com/ 5 | IDList= 6 | HotKey=0 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/layer-v3.1.1/文档/获得layim.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://layim.layui.com/?from=icon 5 | IDList= 6 | HotKey=0 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/1_close.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/1_open.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/2.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/3.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/4.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/5.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/6.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/7.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/8.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/diy/9.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/line_conn.gif -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/zTreeStandard.gif -------------------------------------------------------------------------------- /src/main/webapp/bower_components/ztree/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/bower_components/ztree/img/zTreeStandard.png -------------------------------------------------------------------------------- /src/main/webapp/c71e5ee64f79b908df5223fd8e079868: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/c71e5ee64f79b908df5223fd8e079868 -------------------------------------------------------------------------------- /src/main/webapp/c890f6c515173e467eb9a043aca466d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/c890f6c515173e467eb9a043aca466d4 -------------------------------------------------------------------------------- /src/main/webapp/d2bfb14f2d089a9e652990e129e813b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/d2bfb14f2d089a9e652990e129e813b -------------------------------------------------------------------------------- /src/main/webapp/d602f541df4030cc0cff0551530edfb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/d602f541df4030cc0cff0551530edfb7 -------------------------------------------------------------------------------- /src/main/webapp/da08af06ff7c3e415fa7ef624e466fc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/da08af06ff7c3e415fa7ef624e466fc6 -------------------------------------------------------------------------------- /src/main/webapp/e4e331e87a8ff2523a6650b758d59ee9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/e4e331e87a8ff2523a6650b758d59ee9 -------------------------------------------------------------------------------- /src/main/webapp/e7db83e225a2ad5dbe5e8a697b861da1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/e7db83e225a2ad5dbe5e8a697b861da1 -------------------------------------------------------------------------------- /src/main/webapp/ef04e3d6ccb707c75182dabd2364b53d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/ef04e3d6ccb707c75182dabd2364b53d -------------------------------------------------------------------------------- /src/main/webapp/f11727968a2ce6cca46878488c31c30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/f11727968a2ce6cca46878488c31c30 -------------------------------------------------------------------------------- /src/main/webapp/fb46a902c5045885114581350f994934: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/fb46a902c5045885114581350f994934 -------------------------------------------------------------------------------- /src/main/webapp/fc122eb08f2e65c20c2ac59677f46194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/fc122eb08f2e65c20c2ac59677f46194 -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/1@2x.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/2@2x.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/img/backgrounds/3@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/assets/img/backgrounds/3@2x.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/assets/js/placeholder.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $(".form-username").val("Username..."); 5 | $(".form-password").val("Password..."); 6 | 7 | }); -------------------------------------------------------------------------------- /src/main/webapp/static/admin/css/adminDecoration.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image:url(photo/login_background.jpg); 3 | } -------------------------------------------------------------------------------- /src/main/webapp/static/admin/css/photo/login_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/css/photo/login_background.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/icon/redleaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/icon/redleaf.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/photo/login_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/admin/photo/login_background.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/assets/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/img/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/assets/img/backgrounds/2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/img/backgrounds/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/assets/img/backgrounds/3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/student/assets/js/placeholder.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $(".form-username").val("Username..."); 5 | $(".form-password").val("Password..."); 6 | 7 | }); -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/css/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/webapp/static/student/css/my/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/static/student/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/src/main/webapp/static/student/icon/favicon.ico -------------------------------------------------------------------------------- /基于Spring Boot的校园报修.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/CampusFaultReportingManagementSystem/41910cc3ef169c048a5754d365ca594f773da9af/基于Spring Boot的校园报修.docx --------------------------------------------------------------------------------