├── .github └── FUNDING.yml ├── NEW ├── README.md ├── Sc ├── 1.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── 5.PNG ├── 6.PNG └── wireframe.png ├── admin ├── change-password.php ├── css │ ├── awesome-bootstrap-checkbox.css │ ├── bootstrap-select.css │ ├── bootstrap-social.css │ ├── bootstrap.min.css │ ├── css │ │ └── vars.css │ ├── dataTables.bootstrap.min.css │ ├── datatables.min.css │ ├── fileinput.min.css │ ├── font-awesome.min.css │ ├── jquery.dataTables.min.css │ ├── less │ │ ├── components.less │ │ └── vars.less │ ├── style.css │ └── style.less ├── dashboard.php ├── deleteduser.php ├── download.php ├── edit-user.php ├── feedback.php ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── includes │ ├── config.php │ ├── header.php │ └── leftbar.php ├── index.php ├── js │ ├── Chart.min.js │ ├── bootstrap-select.js │ ├── bootstrap-select.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── chartData.js │ ├── dataTables.bootstrap.min.js │ ├── fileinput.js │ ├── jquery.dataTables.min.js │ ├── jquery.min.js │ └── main.js ├── logout.php ├── notification.php ├── profile.php ├── sendreply.php └── userlist.php ├── change-password.php ├── css ├── awesome-bootstrap-checkbox.css ├── bootstrap-select.css ├── bootstrap-social.css ├── bootstrap.min.css ├── css │ └── vars.css ├── dataTables.bootstrap.min.css ├── datatables.min.css ├── fileinput.min.css ├── font-awesome.min.css ├── jquery.dataTables.min.css ├── less │ ├── components.less │ └── vars.less ├── style.css └── style.less ├── database.sql ├── feedback.php ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images └── .gitignore ├── includes ├── config.php ├── header.php └── leftbar.php ├── index.php ├── js ├── Chart.min.js ├── bootstrap-select.js ├── bootstrap-select.min.js ├── bootstrap.js ├── bootstrap.min.js ├── chartData.js ├── contact_me.js ├── dataTables.bootstrap.min.js ├── fileinput.js ├── jqBootstrapValidation.js ├── jquery.dataTables.min.js ├── jquery.min.js └── main.js ├── logout.php ├── messages.php ├── notification.php ├── profile.php ├── register.php └── vendor ├── bootstrap ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ └── bootstrap.min.css └── js │ ├── bootstrap.js │ └── bootstrap.min.js ├── countries.js ├── jquery ├── jquery.js └── jquery.min.js └── tether ├── tether.js └── tether.min.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /NEW: -------------------------------------------------------------------------------- 1 | registerMember(); 7 | } 8 | ?> 9 | 10 |
11 |# | 88 |Delete Time | 90 ||
---|---|---|
106 | | email);?> | 107 |deltime);?> | 108 |
# | 16 |Name | 17 |Gender | 19 |Phone | 20 |Designation | 21 ||
---|---|---|---|---|---|
'.$cnt.' | 39 |'.$Name= $result->name.' | 40 |'.$Email= $result->email.' | 41 |'.$Gender= $result->gender.' | 42 |'.$Phone= $result->mobile.' | 43 |'.$Designation= $result->designation.' | 44 |
# | 125 |User Email | 126 |Title | 127 |Feedback | 128 |Attachment | 129 |Action | 130 |
---|---|---|---|---|---|
149 | | sender);?> | 150 |title);?> | 151 |feedbackdata);?> | 152 |attachment);?> | 153 | 154 |155 | 156 | | 157 |
# | 133 |Image | 134 |Name | 135 |Gender | 137 |Phone | 138 |Designation | 139 |Account | 140 |Action | 141 ||
---|---|---|---|---|---|---|---|---|
157 | | name);?> | 159 |email);?> | 160 |gender);?> | 161 |mobile);?> | 162 |designation);?> 163 | | 164 | 165 | status == 1) 166 | {?> 167 | Confirmed 168 | 169 | Un-Confirmed 170 | 171 | | 172 | 173 | 174 |175 | 176 | 177 | | 178 |
Don't Have an Account? Signup
71 |# | 88 |User | 89 |Message | 90 |
---|---|---|
109 | | sender);?> | 110 |feedbackdata);?> | 111 |