├── LICENSE.md ├── README.md ├── assets ├── css │ └── style.css └── js │ └── script.js ├── change_password.php ├── config.php ├── demo.sql ├── edit_profile.php ├── forget_password.php ├── functions.php ├── includes ├── footer.php ├── header.php └── navbar.php ├── index.php ├── libraries └── PHPMailer-master │ └── readme.md ├── login.php ├── logout.php ├── process ├── account_verify.php ├── change_password.php ├── deactivate_account.php ├── edit_profile.php ├── forget_password.php ├── login.php ├── register.php ├── request_activate_account.php ├── reset_code_verify.php └── reset_password.php ├── profile.php ├── register.php ├── request-account-activate.php └── reset_password.php /LICENSE.md: -------------------------------------------------------------------------------- 1 | The Clear BSD License 2 | 3 | Copyright (c) 2019 ZykeNetwork 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted (subject to the limitations in the disclaimer 8 | below) provided that the following conditions are met: 9 | 10 | * Redistributions of source code must retain the above copyright notice, 11 | this list of conditions and the following disclaimer. 12 | 13 | * Redistributions in binary form must reproduce the above copyright 14 | notice, this list of conditions and the following disclaimer in the 15 | documentation and/or other materials provided with the distribution. 16 | 17 | * Neither the name of the copyright holder nor the names of its 18 | contributors may be used to endorse or promote products derived from this 19 | software without specific prior written permission. 20 | 21 | NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY 22 | THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 23 | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 24 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 25 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 26 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 27 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 28 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 29 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 30 | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 | POSSIBILITY OF SUCH DAMAGE. 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Project-Burger 2 | Easy to Start, Easy to work, easy to understand. 3 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font-family: 'Raleway', sans-serif; 3 | } 4 | .navbar-custom{ 5 | background-color:#86be3f !important; 6 | font-weight: bold; 7 | } 8 | 9 | .navbar-custom a{ 10 | color:#fff !important; 11 | } 12 | 13 | .navbar-custom a:hover{ 14 | color:#fff; 15 | } 16 | 17 | 18 | 19 | 20 | .card-custom{ 21 | border-color: #86be3f; 22 | } 23 | 24 | .card-header-custom{ 25 | background-color: #86be3f; 26 | } 27 | 28 | .card-header-custom a{ 29 | color: #fff; 30 | } 31 | 32 | .color-set{ 33 | background-color:#86be3f; 34 | color:white; 35 | } 36 | 37 | .color-set-default{ 38 | background-color: #343a40; 39 | color:white; 40 | } 41 | 42 | 43 | #imageUpload{ 44 | display: none; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- 1 | $( "#uploadNewImage" ).click(function() { 2 | $("#imageBox").hide(); 3 | $("#imageUpload").show(); 4 | 5 | }); 6 | -------------------------------------------------------------------------------- /change_password.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
Please fill in credentials to Change Password.
16 | 17 | 29 | 30 | 31 | 69 | 70 |17 | 30 | 31 |
32 | 90 | 91 |Please fill in credentials to get reset link.
17 | 18 | 29 | 30 | 63 | 64 |