├── login ├── includes │ ├── sample_format.csv │ ├── auth_validate.php │ ├── flash_messages.php │ ├── footer.php │ └── header.php ├── img │ ├── logo.png │ └── banner.jpg ├── assets │ ├── fonts │ │ ├── font-awesome │ │ │ ├── less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── core.less │ │ │ │ ├── stacked.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── path.less │ │ │ │ ├── animated.less │ │ │ │ └── mixins.less │ │ │ ├── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _animated.scss │ │ │ │ └── _mixins.scss │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── HELP-US-OUT.txt │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── npm.js │ │ ├── metisMenu │ │ │ ├── metisMenu.min.css │ │ │ └── metisMenu.min.js │ │ ├── sb-admin-2.js │ │ └── index.js │ └── css │ │ └── sb-admin-2.css ├── logout.php ├── delete_user.php ├── lib │ ├── Costumers │ │ └── Costumers.php │ └── Users │ │ └── Users.php ├── delete_contact.php ├── delete_feedback.php ├── delete_customer.php ├── delete_newsletter.php ├── cookies.php ├── config │ ├── config.php │ └── importcsv.php ├── dcsvcontact.php ├── dcsvnewsletter.php ├── dcsvfeedback.php ├── dcsvcertificate.php ├── add_admin.php ├── authenticate.php ├── forms │ ├── admin_users_form.php │ └── customer_form.php ├── add_customer.php ├── edit_customer.php ├── edit_admin.php ├── helpers │ └── helpers.php ├── login.php ├── feedback.php ├── contact.php ├── newsletter.php └── admin_users.php ├── img ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── logo.png ├── certg.png ├── certv.png ├── Vaibhav.jpg ├── Vignesh.jpg └── logo │ └── favicon │ ├── favicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ └── site.webmanifest ├── debug.log ├── assets ├── img │ ├── why-us.jpg │ ├── header-bg.psd │ ├── testimonial-1.jpg │ ├── testimonial-2.jpg │ ├── testimonial-3.jpg │ ├── testimonial-4.jpg │ ├── features-1.svg │ └── features-2.svg ├── vendor │ ├── ionicons │ │ └── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ ├── font-awesome │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── owl.carousel │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.video.play.png │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.carousel.min.css │ │ │ └── owl.carousel.css │ │ ├── LICENSE │ │ └── README.md │ ├── php-email-form │ │ ├── changelog.txt │ │ └── validate.js │ ├── mobile-nav │ │ └── mobile-nav.js │ ├── counterup │ │ └── counterup.min.js │ ├── jquery.easing │ │ └── jquery.easing.min.js │ └── bootstrap │ │ └── css │ │ ├── bootstrap-reboot.min.css │ │ └── bootstrap-reboot.css └── js │ └── main.js ├── config ├── config.php ├── configverify.php ├── db.php ├── functionsverify.php └── functions.php ├── js └── script.js ├── contact.php ├── feedback.php ├── newsletter.php ├── cookie.html ├── README.md ├── SQL └── cgv.sql ├── css └── style.css ├── certg.php └── certv.php /login/includes/sample_format.csv: -------------------------------------------------------------------------------- 1 | Vignesh,Shetty,Male,369,Python,96,"SJEC, MANGALORE" 2 | -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/6.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/certg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/certg.png -------------------------------------------------------------------------------- /img/certv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/certv.png -------------------------------------------------------------------------------- /img/Vaibhav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/Vaibhav.jpg -------------------------------------------------------------------------------- /img/Vignesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/Vignesh.jpg -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- 1 | [1114/131325.290:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 2 | -------------------------------------------------------------------------------- /login/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/img/logo.png -------------------------------------------------------------------------------- /assets/img/why-us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/why-us.jpg -------------------------------------------------------------------------------- /login/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/img/banner.jpg -------------------------------------------------------------------------------- /assets/img/header-bg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/header-bg.psd -------------------------------------------------------------------------------- /assets/img/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/testimonial-1.jpg -------------------------------------------------------------------------------- /assets/img/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/testimonial-2.jpg -------------------------------------------------------------------------------- /assets/img/testimonial-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/testimonial-3.jpg -------------------------------------------------------------------------------- /assets/img/testimonial-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/img/testimonial-4.jpg -------------------------------------------------------------------------------- /img/logo/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/favicon.ico -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/logo/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /img/logo/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /img/logo/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /config/configverify.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendor/ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /assets/vendor/ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/vendor/ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('.print').click(function(){ 3 | $(this).hide(); 4 | window.print(); 5 | $(this).show(); 6 | }); 7 | 8 | }); -------------------------------------------------------------------------------- /img/logo/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /img/logo/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/img/logo/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/vendor/owl.carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/owl.carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/vendor/owl.carousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/owl.carousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /login/assets/fonts/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 | -------------------------------------------------------------------------------- /login/assets/fonts/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 | -------------------------------------------------------------------------------- /login/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /login/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /login/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /login/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /login/assets/fonts/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 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshshettyin/Online-Certificate-Generation-Verification/HEAD/login/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /login/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/logo/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /login/includes/auth_validate.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendor/php-email-form/changelog.txt: -------------------------------------------------------------------------------- 1 | Version: 2.0 2 | - The minimum required PHP version is 5.5 3 | - Improved error handling and debugging 4 | - Added support for cc and bcc 5 | - Added "honeypot" spam protection feature 6 | - Added support for Google reCaptcha spam protection 7 | 8 | Version: 1.0 9 | - Initial Release 10 | 11 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /login/assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /login/delete_user.php: -------------------------------------------------------------------------------- 1 | where('id', $del_id); 18 | $stat = $db->delete('admin_accounts'); 19 | if ($stat) { 20 | $_SESSION['info'] = "User deleted successfully!"; 21 | header('location: admin_users.php'); 22 | exit; 23 | } 24 | } -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- 1 | 2 | connect_error){ 10 | die('Connection Failed : '.$con->connect_error); 11 | }else{ 12 | $stmt = $con->prepare("insert into contact(name, email_id, phone, response) 13 | values(?, ?, ?, ?)"); 14 | $stmt->bind_param("ssss",$fName, $contactEmail, $contactMessage, $contactPhone); 15 | $stmt->execute(); 16 | echo "Your message has been sent. Thank you!"; 17 | $stmt->close(); 18 | $con->close(); 19 | } 20 | 21 | ?> -------------------------------------------------------------------------------- /login/assets/js/metisMenu/metisMenu.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | * metismenu - v1.1.3 3 | * Easy menu jQuery plugin for Twitter Bootstrap 3 4 | * https://github.com/onokumus/metisMenu 5 | * 6 | * Made by Osman Nuri Okumus 7 | * Under MIT License 8 | */ 9 | 10 | .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"} -------------------------------------------------------------------------------- /login/lib/Costumers/Costumers.php: -------------------------------------------------------------------------------- 1 | 'ID', 25 | 'f_name' => 'First Name', 26 | 'l_name' => 'Last Name', 27 | 'certificate_number' =>'Certificate Number', 28 | 'training_name' => 'Training Name', 29 | 'college_name' => 'Organization Name' 30 | // 'updated_at' => 'Updated at' 31 | ]; 32 | 33 | return $ordering; 34 | } 35 | } 36 | ?> 37 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /login/assets/js/sb-admin-2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - SB Admin 2 v3.3.7+1 (http://startbootstrap.com/template-overviews/sb-admin-2) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */ 6 | $(function(){$("#side-menu").metisMenu()}),$(function(){$(window).bind("load resize",function(){var i=50,n=this.window.innerWidth>0?this.window.innerWidth:this.screen.width;n<768?($("div.navbar-collapse").addClass("collapse"),i=100):$("div.navbar-collapse").removeClass("collapse");var e=(this.window.innerHeight>0?this.window.innerHeight:this.screen.height)-1;e-=i,e<1&&(e=1),e>i&&$("#page-wrapper").css("min-height",e+"px")});for(var i=window.location,n=$("ul.nav a").filter(function(){return this.href==i}).addClass("active").parent();;){if(!n.is("li"))break;n=n.parent().addClass("in").parent()}}); -------------------------------------------------------------------------------- /feedback.php: -------------------------------------------------------------------------------- 1 | 2 | connect_error){ 11 | die('Connection Failed : '.$con->connect_error); 12 | }else{ 13 | $stmt = $con->prepare("insert into feedback(name, email_id, phone, rating, feedback) 14 | values(?, ?, ?, ?, ?)"); 15 | $stmt->bind_param("sssss",$fName, $contactEmail,$contactMessage, $rating, $contactPhone); 16 | $stmt->execute(); 17 | echo "Your feedback has been sent. Thank you!"; 18 | $stmt->close(); 19 | $con->close(); 20 | } 21 | 22 | ?> -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /newsletter.php: -------------------------------------------------------------------------------- 1 | 2 | connect_error){ 11 | die('Connection Failed : '.$con->connect_error); 12 | }else{ 13 | $stmt = $con->prepare("insert into newsletter(contactemail, country, city, ip) 14 | values(?, ?, ?, ?)"); 15 | $stmt->bind_param("ssss",$contactEmail, $country, $city, $user_ip); 16 | $stmt->execute(); 17 | echo "Your successfully subscribed. Thank you!"; 18 | $stmt->close(); 19 | $con->close(); 20 | } 21 | 22 | ?> -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /login/assets/fonts/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /login/delete_contact.php: -------------------------------------------------------------------------------- 1 | where('id', $customer_id); 19 | $status = $db->delete('contact'); 20 | 21 | if ($status) 22 | { 23 | $_SESSION['info'] = "Success!"; 24 | header('location: contact.php'); 25 | exit; 26 | } 27 | else 28 | { 29 | $_SESSION['failure'] = "Failed!"; 30 | header('location: contact.php'); 31 | exit; 32 | 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /login/delete_feedback.php: -------------------------------------------------------------------------------- 1 | where('id', $customer_id); 19 | $status = $db->delete('feedback'); 20 | 21 | if ($status) 22 | { 23 | $_SESSION['info'] = "Success!"; 24 | header('location: feedback.php'); 25 | exit; 26 | } 27 | else 28 | { 29 | $_SESSION['failure'] = "Failed!"; 30 | header('location: feedback.php'); 31 | exit; 32 | 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /login/lib/Users/Users.php: -------------------------------------------------------------------------------- 1 | 'ID', 32 | 'user_name' => 'Username', 33 | 'admin_type' => 'Admin Type' 34 | ]; 35 | 36 | return $ordering; 37 | } 38 | } 39 | ?> 40 | -------------------------------------------------------------------------------- /login/delete_customer.php: -------------------------------------------------------------------------------- 1 | where('id', $customer_id); 19 | $status = $db->delete('customers'); 20 | 21 | if ($status) 22 | { 23 | $_SESSION['info'] = "Success!"; 24 | header('location: customers.php'); 25 | exit; 26 | } 27 | else 28 | { 29 | $_SESSION['failure'] = "Failed!"; 30 | header('location: customers.php'); 31 | exit; 32 | 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /login/delete_newsletter.php: -------------------------------------------------------------------------------- 1 | where('id', $customer_id); 19 | $status = $db->delete('newsletter'); 20 | 21 | if ($status) 22 | { 23 | $_SESSION['info'] = "Success!"; 24 | header('location: newsletter.php'); 25 | exit; 26 | } 27 | else 28 | { 29 | $_SESSION['failure'] = "Failed!"; 30 | header('location: newsletter.php'); 31 | exit; 32 | 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /login/includes/flash_messages.php: -------------------------------------------------------------------------------- 1 | 6 | × 7 | Success! '. $_SESSION['success'].' 8 | '; 9 | unset($_SESSION['success']); 10 | } 11 | 12 | if(isset($_SESSION['failure'])) 13 | { 14 | echo '
Made with in CGV
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 52 |