Skip to content

Commit 39166c1

Browse files
first commit
0 parents  commit 39166c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+11994
-0
lines changed

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Joshua Ambalong
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Diff for: README.MD

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# CUSTMBRS - Cottage Usage Scheduling with Transaction Monitoring for a Beach Resort System
2+
3+
## Installation
4+
- Download XAMPP from [here](https://www.apachefriends.org/download.html)
5+
- Install XAMPP
6+
- Clone this repository to your `xampp/htdocs` folder
7+
- `git clone https://github.com/HashJProgramming/CUSTMBRS`
8+
- Open XAMPP Control Panel
9+
- Start Apache and MySQL
10+
- Open your browser and go to `localhost/CUSTMBRS`
11+
- Enjoy!
12+
13+
Here you can change the `xampp/htdocs/index.php` to redirect to the `CUSTMBRS` folder.
14+
```php
15+
<?php
16+
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
17+
$uri = 'https://';
18+
} else {
19+
$uri = 'http://';
20+
}
21+
$uri .= $_SERVER['HTTP_HOST'];
22+
header('Location: '.$uri.'/CUSTMBRS/');
23+
exit;
24+
?>
25+
```
26+
27+
## XAMPP System Specifications
28+
29+
| Tool | Version |
30+
|-----------------|-------------------------------------|
31+
| Database Server | 10.4.28-MariaDB - mariadb.org binary distribution |
32+
| Web Server | Apache/2.4.56 (Win64) OpenSSL/1.1.1t PHP/8.2.4 |
33+
| Database Client | libmysql - mysqlnd 8.2.4 |
34+
| PHP | 8.2.4 |
35+
| phpMyAdmin | 5.2.1 (up to date) |
36+
37+
38+
## LICENSE
39+
```
40+
MIT License
41+
42+
Copyright (c) 2023 Joshua Ambalong
43+
44+
Permission is hereby granted, free of charge, to any person obtaining a copy
45+
of this software and associated documentation files (the "Software"), to deal
46+
in the Software without restriction, including without limitation the rights
47+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
48+
copies of the Software, and to permit persons to whom the Software is
49+
furnished to do so, subject to the following conditions:
50+
51+
The above copyright notice and this permission notice shall be included in all
52+
copies or substantial portions of the Software.
53+
54+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
55+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
56+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
57+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
58+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
59+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
60+
SOFTWARE.
61+
```

Diff for: assets/bootstrap/css/bootstrap.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: assets/bootstrap/js/bootstrap.min.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: assets/css/Application-Form.css

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#upload {
2+
opacity: 0;
3+
}
4+
5+
#upload-label {
6+
position: absolute;
7+
top: 50%;
8+
left: 1rem;
9+
transform: translateY(-50%);
10+
}
11+
12+
.image-area {
13+
border: 2px dashed rgba(54,1,80,0.7);
14+
padding: 1rem;
15+
position: relative;
16+
}
17+
18+
.image-area::before {
19+
content: 'Uploaded image result';
20+
color: #46015e;
21+
font-weight: bold;
22+
text-transform: uppercase;
23+
position: absolute;
24+
top: 50%;
25+
left: 50%;
26+
transform: translate(-50%, -50%);
27+
font-size: 0.8rem;
28+
z-index: 1;
29+
}
30+
31+
.image-area img {
32+
z-index: 2;
33+
position: relative;
34+
}
35+
36+
input[type=number] {
37+
-moz-appearance: textfield;
38+
}
39+

Diff for: assets/css/Articles-Cards-images.css

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.fit-cover {
2+
object-fit: cover;
3+
}
4+

Diff for: assets/css/Navbar-Centered-Links-icons.css

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
.bs-icon {
2+
--bs-icon-size: .75rem;
3+
display: flex;
4+
flex-shrink: 0;
5+
justify-content: center;
6+
align-items: center;
7+
font-size: var(--bs-icon-size);
8+
width: calc(var(--bs-icon-size) * 2);
9+
height: calc(var(--bs-icon-size) * 2);
10+
color: var(--bs-primary);
11+
}
12+
13+
.bs-icon-xs {
14+
--bs-icon-size: 1rem;
15+
width: calc(var(--bs-icon-size) * 1.5);
16+
height: calc(var(--bs-icon-size) * 1.5);
17+
}
18+
19+
.bs-icon-sm {
20+
--bs-icon-size: 1rem;
21+
}
22+
23+
.bs-icon-md {
24+
--bs-icon-size: 1.5rem;
25+
}
26+
27+
.bs-icon-lg {
28+
--bs-icon-size: 2rem;
29+
}
30+
31+
.bs-icon-xl {
32+
--bs-icon-size: 2.5rem;
33+
}
34+
35+
.bs-icon.bs-icon-primary {
36+
color: var(--bs-white);
37+
background: var(--bs-primary);
38+
}
39+
40+
.bs-icon.bs-icon-primary-light {
41+
color: var(--bs-primary);
42+
background: rgba(var(--bs-primary-rgb), .2);
43+
}
44+
45+
.bs-icon.bs-icon-semi-white {
46+
color: var(--bs-primary);
47+
background: rgba(255, 255, 255, .5);
48+
}
49+
50+
.bs-icon.bs-icon-rounded {
51+
border-radius: .5rem;
52+
}
53+
54+
.bs-icon.bs-icon-circle {
55+
border-radius: 50%;
56+
}
57+

0 commit comments

Comments
 (0)