Skip to content

Commit 1e2202c

Browse files
committed
Update logos and favicons, README corrections
1 parent 54cbec1 commit 1e2202c

17 files changed

+60
-51
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ A quick look at the top-level files and directories in this project.
213213
- **`/config`**: Images used for the `configure.php` page.
214214
- **`/fav`**: Favorite/Bookmark icons, including icons for Android and iOS shortcuts.
215215
- **`/link`**: Images used for the link icons on the `email.php` page (i.e google, facebook, etc.).
216-
- **`/logo`**: This is where your uploaded company logo will go from the Configure screen (replacing `logo.php`) for the Customer screen. There's also a backup of the default **Palm Tree** logo named `default_logo.php`.
216+
- **`/logo`**: This is where your uploaded company logo will go from the Configure screen (replacing `logo.png`) for the Customer screen.
217217
4. **`/js`**: The directory where the default JavaScript and jQuery file is stored: `main.js`. It also contains the included dependency file [jQuery-Tabledit v1.2.3](https://github.com/markcell/jquery-tabledit), located in `jquery.tabledit.js`, used to update the Customer screen table using the `customers.php` table.
218218
5. **`/lib`**: The directory where misc. library files are stored. This directory contains the [PHPMailer v6.7.1](https://github.com/PHPMailer/PHPMailer/tree/5.2-stable) dependency, which is used in the `email.php` file to call email functions. This directory also contains the `phpinfo.php` file, to be viewed in your browser, containing the `phpinfo()` function:
219219
> Because every system is setup differently, `phpinfo()` is commonly used to check configuration settings, such as log file locations, and for available predefined variables on a given system.
@@ -271,7 +271,7 @@ A quick look at the top-level files and directories in this project.
271271
docker-compose up
272272
```
273273
6. This will build the **Docker Containers** and you should find your application running under *port 80*.
274-
- Navigate to: ```http://localhost/index.php```
274+
- Navigate to: ```http://localhost```
275275
276276
***Using XAMPP (Alternative):***
277277
@@ -286,8 +286,13 @@ A quick look at the top-level files and directories in this project.
286286
- From: `/configure.php` To: `/Palm-Tree/configure.php`
287287
- From: `/email.php` To: `/Palm-Tree/email.php`
288288
- Alternatively, you can update the `httpd.conf` file to set your default index page for your localhost to the `Palm-Tree` directory.
289-
290289
6. Go to your web browser and navigate to the URL: `http://localhost/Palm-Tree` and you should be redirected to the main application page.
290+
7. If you're accessing **Palm Tree** from a mobile device on your local network, you'll have to to access the application using your host machines IP address. To find your IP address, open up your CLI and type:
291+
```bash
292+
ipconfig
293+
```
294+
- You should see your IP address under the `IPv4 Address` field.
295+
- Navigate to the URL: `http://<your_ip_address>/Palm-Tree` and you should be redirected to the main application page.
291296

292297
***Closing:***
293298

configure.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<?php
22
include_once("database.php");
3-
include("header.php");;
3+
include("header.php");
4+
include('container.php');
45
?>
5-
<title>Palm Tree</title>
6-
<?php include('container.php'); ?>
76
<div class="container home">
87
<form method="post" action="commands.php" enctype="multipart/form-data">
98
<h5 style="color:#FF0000;line-height: 35px;font-size:13px"><b>Configure Company</b></h5>

customers.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<?php
22
include_once("database.php");
33
include("header.php");
4-
?>
5-
<title>Palm Tree</title>
6-
<script type="text/javascript" src="js/jquery.tabledit.js"></script>
7-
<link rel="stylesheet" href="css/main.css">
8-
<?php include('container.php');
4+
include('container.php');
95
?>
106
<div class="container home">
117
<?php

email.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
include_once("database.php");
33
include("header.php");
44
include("encryption.php");
5+
include('container.php');
56
?>
6-
<title>Palm Tree</title>
7-
<?php include('container.php'); ?>
87
<div class="container home">
98
<form method="post" action="commands.php">
109
<h5 style="color:#FF0000;line-height: 35px;font-size:13px"><b>Email Template</b></h5>

header.php

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<!-- Update the icon files in the img/fav directory if you want a different Shortcut/Tab Icon -->
4+
<!-- Replace the meta tags with your information (optional) -->
5+
<meta charset="UTF-8">
6+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
<meta name="robots" content="index, follow">
10+
<meta name="description" content="A web based CRM application with Google Business Review email request capabilities. Send marketing emails out to your customers, including emails requesting Google Business Reviews. Directly open a Review window on your Google Business page with a click of a button within the email.">
11+
<!-- favicons -->
512
<link rel="apple-touch-icon" sizes="180x180" href="img/fav/apple-touch-icon.png">
613
<link rel="icon" type="image/png" sizes="32x32" href="img/fav/favicon-32x32.png">
714
<link rel="icon" type="image/png" sizes="16x16" href="img/fav/favicon-16x16.png">
815
<link rel="manifest" href="img/fav/site.webmanifest">
9-
<link rel="mask-icon" href="img/fav/safari-pinned-tab.svg" color="#5bbad5">
10-
<meta name="msapplication-TileColor" content="#000000">
11-
<meta name="theme-color" content="#000000">
12-
<!-- -->
13-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
14-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16+
<link rel="mask-icon" href="img/fav/safari-pinned-tab.svg" color="#000066">
17+
<link rel="shortcut icon" href="img/fav/favicon.ico">
18+
<meta name="msapplication-TileColor" content="#000066">
19+
<meta name="msapplication-config" content="img/fav/browserconfig.xml">
20+
<meta name="theme-color" content="#000066">
21+
<!-- Dependencies -->
1522
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
1623
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
1724
<link rel="stylesheet" href="css/main.css">
1825
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
1926
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
20-
27+
<script type="text/javascript" src="js/jquery.tabledit.js"></script>
28+
<!-- Website Title -->
29+
<title>Palm Tree</title>

img/fav/android-chrome-192x192.png

-5.21 KB
Loading

img/fav/android-chrome-256x256.png

-23.9 KB
Binary file not shown.

img/fav/android-chrome-512x512.png

34 KB
Loading

img/fav/apple-touch-icon.png

-4.68 KB
Loading

img/fav/browserconfig.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<browserconfig>
33
<msapplication>
44
<tile>
5-
<square150x150logo src="/mstile-150x150.png"/>
6-
<TileColor>#da532c</TileColor>
5+
<square150x150logo src="img/fav/mstile-150x150.png"/>
6+
<TileColor>#000066</TileColor>
77
</tile>
88
</msapplication>
99
</browserconfig>

img/fav/favicon-16x16.png

-390 Bytes
Loading

img/fav/favicon-32x32.png

-277 Bytes
Loading

img/fav/favicon.ico

0 Bytes
Binary file not shown.

img/fav/mstile-150x150.png

-708 Bytes
Loading

img/fav/safari-pinned-tab.svg

+22-21
Loading

img/fav/site.webmanifest

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "",
3-
"short_name": "",
2+
"name": "Palm Tree",
3+
"short_name": "Palm Tree",
44
"icons": [
55
{
6-
"src": "/android-chrome-192x192.png",
6+
"src": "android-chrome-192x192.png",
77
"sizes": "192x192",
88
"type": "image/png"
99
},
1010
{
11-
"src": "/android-chrome-256x256.png",
12-
"sizes": "256x256",
11+
"src": "android-chrome-512x512.png",
12+
"sizes": "512x512",
1313
"type": "image/png"
1414
}
1515
],
16-
"theme_color": "#ffffff",
17-
"background_color": "#ffffff",
16+
"theme_color": "#000066",
17+
"background_color": "#000066",
1818
"display": "standalone"
1919
}

img/logo/logo.png

34.6 KB
Loading

0 commit comments

Comments
 (0)