Mini football's ground management system is my school project in learning the software development course, it have given me lots of knowledge of how a booking and managing system working.
-
Download Font Awesome, jQuery, jQuery UI and jQuery Select2 libraries.
-
Create a folder named Libraries with two sub-folders named jQuery and FontAwesome.
-
Copy css/all.css and webfonts/ of Font Awesome package to Libraries/FontAwesome.
-
Copy jquery-3.5.1.js of jQuery package to Libraries/jQuery.
-
Copy images/, jquery-ui.js, jquery-ui.css and jquery-ui.theme.css of jQuery UI package to Libraries/jQuery.
-
Copy select2.full.min.js and select2.min.css of jQuery Select2 package to Libraries/jQuery.
-
Finally, clone the project and paste the Libraries folder to it.
<!-- Font Awesome -->
<link rel="stylesheet" href="./Libraries/FontAwesome/css/all.css">
<!-- jQuery UI styles -->
<link rel="stylesheet" href="./Libraries/jQuery/jquery-ui.css">
<link rel="stylesheet" href="./Libraries/jQuery/jquery-ui.theme.css">
<!-- jQuery Select2 styles -->
<link rel="stylesheet" href="./Libraries/jQuery/select2.min.css">
<!-- jQuery -->
<script src="./Libraries/jQuery/jquery-3.5.1.js"></script>
<!-- jQuery UI -->
<script src="./Libraries/jQuery/jquery-ui.js"></script>
<!-- jQuery Select2 -->
<script src="./Libraries/jQuery/select2.full.min.js"></script>
-
Setup and run XAMPP app.
-
Start Apache Server and MySQL Server.
-
Import database to MySQL Server
-
Run and enjoyed the project.
-
Booking and payment management.
-
User management.
-
Beverage management
-
Booking online.
-
Statistic profit.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.